We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0adb766 commit b06654eCopy full SHA for b06654e
src/nativescript-angular/application.ts
@@ -1,5 +1,11 @@
1
import 'reflect-metadata';
2
import './polyfills/array';
3
+import 'globals';
4
+//HACK: Unhack our global lazy loaded functions hack to make zone monkey patching work.
5
+var __dummy_setTimeout = global.setTimeout;
6
+var __dummy_clearTimeout = global.clearTimeout;
7
+var __dummy_setInterval = global.setInterval;
8
+var __dummy_clearInterval = global.clearInterval;
9
import './zone';
10
import {isPresent, Type} from 'angular2/src/facade/lang';
11
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
0 commit comments