You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# offline-persistence-toolkit 1.4.6 #
1
+
# offline-persistence-toolkit 1.4.7 #
2
2
3
3
offline-persistence-toolkit is a client-side JavaScript library that provides caching and offline support at the HTTP request layer. This support is transparent to the user and is done through the Fetch API and an XHR adapter. HTTP requests made while the client device is offline are captured for replay when connection to the server is restored. Additional capabilities include a persistent storage layer, synchronization manager, binary data support and various configuration APIs for customizing the default behavior. This framework can be used in both ServiceWorker and non-ServiceWorker contexts within web and hybrid mobile apps.
4
4
@@ -58,16 +58,16 @@ If your app uses [RequireJS](http://www.requirejs.org/ "RequireJS"), update the
58
58
```javascript
59
59
requirejs.config({
60
60
paths: {
61
-
'persist':'js/libs/persist/v1.4.6/min'
61
+
'persist':'js/libs/persist/v1.4.7/min'
62
62
63
63
// Other path mappings here
64
64
}
65
65
```
66
-
For Oracle JET apps, also open `appDir/src/js/main-release-paths.json` and add the `'persist':'js/libs/persist/v1.4.6/min'` entry to the list of paths.
66
+
For Oracle JET apps, also open `appDir/src/js/main-release-paths.json` and add the `'persist':'js/libs/persist/v1.4.7/min'` entry to the list of paths.
67
67
68
68
You can choose the name of the paths prefix. That is, you can use a different value to the ‘persist’ value shown in the examples.
69
69
70
-
It is recommended to add the version number as a convention in your application build step such as `'persist':'js/libs/persist/v1.4.6/min'`.
70
+
It is recommended to add the version number as a convention in your application build step such as `'persist':'js/libs/persist/v1.4.7/min'`.
71
71
72
72
Versions of the toolkit are also available on CDN under the latest JET release. e.g.
73
73
@@ -91,7 +91,7 @@ And again, if you are using RequireJS, you will need to map paths for these pack
0 commit comments