]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Disable service worker
authorChocobozzz <me@florianbigard.com>
Mon, 26 Feb 2018 10:44:54 +0000 (11:44 +0100)
committerChocobozzz <me@florianbigard.com>
Mon, 26 Feb 2018 10:44:54 +0000 (11:44 +0100)
client/src/app/videos/+video-edit/video-add.component.ts
client/src/main.ts
client/src/polyfills.ts

index 324f26983cd931bdc7ac184e9945d6cd10f14ef0..4c9dbf1bbd0d9ee71e0034a5b706c7e6129fe729 100644 (file)
@@ -164,7 +164,7 @@ export class VideoAddComponent extends FormReactive implements OnInit, OnDestroy
 
     const formData = new FormData()
     formData.append('name', name)
-    // Put the video "private" -> we wait he validates the second step
+    // Put the video "private" -> we are waiting the user validation of the second step
     formData.append('privacy', VideoPrivacy.PRIVATE.toString())
     formData.append('nsfw', '' + nsfw)
     formData.append('commentsEnabled', '' + commentsEnabled)
index 9686ba4b863ac0c71d8a13e246a3ecc92b1bce7d..4b18d163c446c09f13b4a485e93c1c1fd12f0e1f 100644 (file)
@@ -13,11 +13,18 @@ if (environment.production) {
 const bootstrap = () => platformBrowserDynamic()
   .bootstrapModule(AppModule)
   .then(bootstrapModule => {
+    // TODO: Uncomment and remove unregistration when https://github.com/angular/angular/issues/21191 is fixed
     // TODO: Remove when https://github.com/angular/angular-cli/issues/8779 is fixed?
-    if ('serviceWorker' in navigator && environment.production) {
-      navigator.serviceWorker.register('/ngsw-worker.js')
-        .catch(err => console.error('Cannot register service worker.', err))
-    }
+    // if ('serviceWorker' in navigator && environment.production) {
+    //   navigator.serviceWorker.register('/ngsw-worker.js')
+    //     .catch(err => console.error('Cannot register service worker.', err))
+    // }
+
+    navigator.serviceWorker.getRegistrations().then(registrations => {
+      for (const registration of registrations) {
+        registration.unregister()
+      }
+    })
 
     return bootstrapModule
   })
index fe44c5e22274b5128b9e61484d8e12cbeefab7ce..12b317101485d2737d260b0ea81a51362b4b08fc 100644 (file)
@@ -61,7 +61,7 @@ import 'core-js/es7/reflect'
  * user can disable parts of macroTask/DomEvents patch by setting following flags
  */
 
-(window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
+// (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
 // (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
 // (window as any).__zone_symbol__BLACK_LISTED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
 /*