Skip to content

Commit 8923bda

Browse files
committed
worker js files missing \#102
1 parent fbc78ce commit 8923bda

8 files changed

+2320
-8
lines changed

worker/dist/browser.administrator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @license MIT License
1111
*/
1212
// @ts-check
13-
// build 90ce38d 2020-05-16 16:45:20-04:00
13+
// build fbc78ce 2020-05-16 17:28:47-04:00
1414
if ("serviceWorker" in navigator) {
1515
navigator.serviceWorker.register("{scope}worker{debug}.js", {
1616
scope: "{scope}"

worker/dist/browser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @license MIT License
1111
*/
1212
// @ts-check
13-
// build 90ce38d 2020-05-16 16:45:20-04:00
13+
// build fbc78ce 2020-05-16 17:28:47-04:00
1414
if ("serviceWorker" in navigator) {
1515
navigator.serviceWorker.register("{scope}worker{debug}.js", {
1616
scope: "{scope}"

worker/dist/browser.prefetch.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ var prefetch = (function (exports) {
179179
urlToPreload == linkElement.href ||
180180
preloadedUrls.has(linkElement.href) ||
181181
(!allowExternalLinks && linkElement.origin != location.origin) ||
182-
(!['http:', 'https:'].includes(linkElement.protocol)) ||
183-
(linkElement.protocol == 'http:' && location.protocol == 'https:') ||
182+
!['http:', 'https:'].includes(linkElement.protocol) ||
183+
linkElement.protocol != location.protocol ||
184184
(!allowQueryString && linkElement.search && !('instant' in linkElement.dataset))
185185
) {
186186
return false;

worker/dist/browser.prefetch.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

worker/dist/browser.uninstall.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @license MIT License
1111
*/
1212
// @ts-check
13-
// build 90ce38d 2020-05-16 16:45:20-04:00
13+
// build fbc78ce 2020-05-16 17:28:47-04:00
1414
if ("serviceWorker" in navigator && navigator.serviceWorker.controller) {
1515
navigator.serviceWorker.getRegistration().then((function(registration) {
1616
registration.unregister().then((function(result) {

0 commit comments

Comments
 (0)