Changeset 1368474
- Timestamp:
- 03/10/2016 05:10:43 PM (10 years ago)
- Location:
- offline-shell/trunk
- Files:
-
- 3 edited
-
lib/service-worker.js (modified) (1 diff)
-
wp-offline-shell-db.php (modified) (1 diff)
-
wp-offline-shell.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
offline-shell/trunk/lib/service-worker.js
r1367822 r1368474 96 96 onInstall: function(event) { 97 97 this.log('[install] Event triggered'); 98 this.log('[install] Initial cache list is: ', this.urls.keys());98 this.log('[install] Initial cache list is: ', Object.keys(this.urls)); 99 99 100 100 event.waitUntil(Promise.all([self.skipWaiting(), this.update()])); -
offline-shell/trunk/wp-offline-shell-db.php
r1367822 r1368474 10 10 'offline_shell_files' => array('styles.css'), 11 11 // Create an initial SW version 12 'offline_shell_version' => '0.2. 2',12 'offline_shell_version' => '0.2.3', 13 13 // Setting debug initially will help the user understand what the SW is doing via the console 14 14 'offline_shell_debug' => 0 -
offline-shell/trunk/wp-offline-shell.php
r1367822 r1368474 4 4 Plugin URI: https://github.com/mozilla/offline-shell 5 5 Description: This WordPress plugin provides a method for caching theme assets via a service worker. 6 Version: 0.2. 26 Version: 0.2.3 7 7 Text Domain: offline-shell 8 8 Author: David Walsh
Note: See TracChangeset
for help on using the changeset viewer.