
committed by
Kara Erickson

parent
7b3bcc23af
commit
5eb7426216
18
packages/zone.js/lib/browser/webapis-notification.ts
Normal file
18
packages/zone.js/lib/browser/webapis-notification.ts
Normal file
@ -0,0 +1,18 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright Google Inc. All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
Zone.__load_patch('notification', (global: any, Zone: ZoneType, api: _ZonePrivate) => {
|
||||
const Notification = global['Notification'];
|
||||
if (!Notification || !Notification.prototype) {
|
||||
return;
|
||||
}
|
||||
const desc = Object.getOwnPropertyDescriptor(Notification.prototype, 'onerror');
|
||||
if (!desc || !desc.configurable) {
|
||||
return;
|
||||
}
|
||||
api.patchOnProperties(Notification.prototype, null);
|
||||
});
|
Reference in New Issue
Block a user