Skip to content

Commit

Permalink
Merge pull request #185 from rdela/patch-1
Browse files Browse the repository at this point in the history
Update saving.md with improved bookmarklet
  • Loading branch information
jacksonh authored Mar 7, 2024
2 parents e4c6a42 + 0b8d1b7 commit 1f277bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/using/saving.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ Some security policies prevent users from installing browser extensions. If you

You can use the following code to create a bookmarklet that saves to Omnivore:

```
javascript:window.open("https://omnivore.app/api/save?url=%22%20+%20window.location.href,%20%27_blank%27);
```js
javascript:void(open('https://omnivore.app/api/save?url='+encodeURIComponent(location.href),'Omnivore'))
```

Or drag the Save to Omnivore link below into your bookmark manager:

<a href='javascript:window.open("https://omnivore.app/api/save?url=" + window.location.href, %27_blank%27);'>Save to Omnivore</a>
<a href="javascript:void(open('https://omnivore.app/api/save?url='+encodeURIComponent(location.href),'Omnivore'))">Save to Omnivore</a>

## Saving from a Phone or Tablet

Expand Down

0 comments on commit 1f277bd

Please sign in to comment.