2016-10-04 20:39:20 -07:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2019-02-01 14:27:13 +01:00
|
|
|
importScripts('angular/modules/playground/src/web_workers/worker-configure.js');
|
2015-08-14 15:06:16 -07:00
|
|
|
|
2019-02-01 14:27:13 +01:00
|
|
|
System.config({packages: {'angular/modules/playground/src/web_workers': {defaultExtension: 'js'}}});
|
|
|
|
|
|
|
|
System.import('./background_index.js')
|
|
|
|
.catch(error => console.error('error loading background', error));
|