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: examples/pwa/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ This example shows how to integrate [Nutrient Web SDK](https://www.nutrient.io/w
4
4
5
5
You can check out a live preview here: [www.nutrient.io/pwa](https://www.nutrient.io/pwa/).
6
6
7
-
This sample application features a basic PWA setup including a [manifest](src/manifest.js) and a [service worker](src/serviceWorker.js), to allow your app to function offline as well as an [IndexedDB storage](src/scripts/PSPDFKitFileStorage.js) for PDFs. This way, your files are persisted even after you close the browser.
7
+
This sample application features a basic PWA setup including a [manifest](src/manifest.js) and a [service worker](src/serviceWorker.js), to allow your app to function offline as well as an [IndexedDB storage](src/scripts/NutrientFileStore.js) for PDFs. This way, your files are persisted even after you close the browser.
8
8
9
9
In this example we use [workbox](https://github.com/GoogleChrome/workbox), a popular PWA framework by Google.
10
10
@@ -15,7 +15,7 @@ In this example we use [workbox](https://github.com/GoogleChrome/workbox), a pop
15
15
16
16
## Support, Issues and License Questions
17
17
18
-
PSPDFKit offers support for customers with an active SDK license via https://www.nutrient.io/support/request/
18
+
Nutrient offers support for customers with an active SDK license via https://www.nutrient.io/support/request/
19
19
20
20
Are you [evaluating our SDK](https://www.nutrient.io/try/)? That's great, we're happy to help out! To make sure this is fast, please use a work email and have someone from your company fill out our sales form: https://www.nutrient.io/sales/
21
21
@@ -68,7 +68,7 @@ To reduce the amount of boilerplate, we use [workbox](https://github.com/GoogleC
68
68
69
69
We also use workbox-cli, another library from Google, to automatically generate a Manifest file for our ServiceWorker pre-cache when we run `npm start`. You can find this configuration file in [`./src/workbox-config.js`](src/workbox-config.js).
70
70
71
-
To allow PDFs to be persisted locally so they do not need to be downloaded again, we've created the [`PSPDFKitFileStore`](src/scripts/PSPDFKitFileStore.js) library. It uses a lightweight and `Promise`-based wrapper around the IndexedDB API called [`idb`](https://github.com/jakearchibald/idb) under the hood. The code is designed to work independently of the PWA example and can also be used in Internet Explorer 11.
71
+
To allow PDFs to be persisted locally so they do not need to be downloaded again, we've created the [`NutrientFileStore`](src/scripts/NutrientFileStore.js) library. It uses a lightweight and `Promise`-based wrapper around the IndexedDB API called [`idb`](https://github.com/jakearchibald/idb) under the hood. The code is designed to work independently of the PWA example and can also be used in Internet Explorer 11.
0 commit comments