fix(exports): update module exports

This commit is contained in:
Adam Bradley
2016-09-14 15:54:20 -05:00
parent 8585427fb4
commit 6784f5e744
8 changed files with 67 additions and 114 deletions

View File

@@ -1,5 +1,3 @@
import { APP_INITIALIZER } from '@angular/core';
import { nativeTimeout } from '../util/dom';
import { Platform } from '../platform/platform';
import { ScrollView } from '../util/scroll-view';
@@ -152,14 +150,3 @@ export function setupProvideEvents(platform: Platform) {
return setupEvents(platform);
};
}
export function provideEvents() {
return {
provide: APP_INITIALIZER,
useFactory: setupProvideEvents,
deps: [
Platform
],
multi: true
};
}