1
0
Fork 0

Disable service worker

This commit is contained in:
Chocobozzz 2018-02-26 11:44:54 +01:00
parent 73c695919c
commit fed9515572
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 13 additions and 6 deletions

View 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)

View 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
})

View 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
/*