2019-06-01 00:56:07 +09:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2019-06-01 00:56:07 +09:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
export function patchCustomElements(_global: any, api: _ZonePrivate) {
|
2020-04-13 16:40:21 -07:00
|
|
|
const {isBrowser, isMix} = api.getGlobalObjects()!;
|
2019-06-01 00:56:07 +09:00
|
|
|
if ((!isBrowser && !isMix) || !_global['customElements'] || !('customElements' in _global)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const callbacks =
|
|
|
|
['connectedCallback', 'disconnectedCallback', 'adoptedCallback', 'attributeChangedCallback'];
|
|
|
|
|
|
|
|
api.patchCallbacks(api, _global.customElements, 'customElements', 'define', callbacks);
|
|
|
|
}
|