coresmart / persistencejs

persistence.js is an asynchronous Javascript database mapper library. You can use it in the browser, as well on the server (and you can share data models between them).
http://persistencejs.org
1.73k stars 240 forks source link

<script> tags in README have wrong directory name #184

Open kentr opened 8 years ago

kentr commented 8 years ago

Problem

With an installation of HEAD, the source files are going into bower_components/persistence/lib, which has a different path than the examples in README.

Suggested fix

change

<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>

to

<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>