Skip to content

Commit

Permalink
worker js files missing \#102
Browse files Browse the repository at this point in the history
  • Loading branch information
tbela99 committed May 18, 2020
1 parent fbc78ce commit 8923bda
Show file tree
Hide file tree
Showing 8 changed files with 2,320 additions and 8 deletions.
2 changes: 1 addition & 1 deletion worker/dist/browser.administrator.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @license MIT License
*/
// @ts-check
// build 90ce38d 2020-05-16 16:45:20-04:00
// build fbc78ce 2020-05-16 17:28:47-04:00
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("{scope}worker{debug}.js", {
scope: "{scope}"
Expand Down
2 changes: 1 addition & 1 deletion worker/dist/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @license MIT License
*/
// @ts-check
// build 90ce38d 2020-05-16 16:45:20-04:00
// build fbc78ce 2020-05-16 17:28:47-04:00
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("{scope}worker{debug}.js", {
scope: "{scope}"
Expand Down
4 changes: 2 additions & 2 deletions worker/dist/browser.prefetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ var prefetch = (function (exports) {
urlToPreload == linkElement.href ||
preloadedUrls.has(linkElement.href) ||
(!allowExternalLinks && linkElement.origin != location.origin) ||
(!['http:', 'https:'].includes(linkElement.protocol)) ||
(linkElement.protocol == 'http:' && location.protocol == 'https:') ||
!['http:', 'https:'].includes(linkElement.protocol) ||
linkElement.protocol != location.protocol ||
(!allowQueryString && linkElement.search && !('instant' in linkElement.dataset))
) {
return false;
Expand Down
2 changes: 1 addition & 1 deletion worker/dist/browser.prefetch.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion worker/dist/browser.uninstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @license MIT License
*/
// @ts-check
// build 90ce38d 2020-05-16 16:45:20-04:00
// build fbc78ce 2020-05-16 17:28:47-04:00
if ("serviceWorker" in navigator && navigator.serviceWorker.controller) {
navigator.serviceWorker.getRegistration().then((function(registration) {
registration.unregister().then((function(result) {
Expand Down
Loading

0 comments on commit 8923bda

Please sign in to comment.