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)
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
})
* 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
/*