Skip to content

Commit

Permalink
Correct paths in <script> tag examples
Browse files Browse the repository at this point in the history
For issue coresmart#184.
  • Loading branch information
kentr committed Apr 14, 2016
1 parent f692c4e commit 4d5ae4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ Add a `<script>` to your `index.html`:
`websql` stores both depend on the `sql` store. A typical setup requires you to add at least
`lib/persistence.js`, `lib/persistence.store.sql.js` and `lib/persistence.store.websql.js` as follows:

<script src="/bower_components/persistencejs/lib/persistence.js"></script>
<script src="/bower_components/persistencejs/lib/persistence.store.sql.js"></script>
<script src="/bower_components/persistencejs/lib/persistence.store.websql.js"></script>
<script src="/bower_components/persistence/lib/persistence.js"></script>
<script src="/bower_components/persistence/lib/persistence.store.sql.js"></script>
<script src="/bower_components/persistence/lib/persistence.store.websql.js"></script>

If you want to use the in-memory store (in combination with
`localStorage`) you also need the `persistence.store.memory.js`
Expand Down

0 comments on commit 4d5ae4b

Please sign in to comment.