cleanup: move DomAdapter from angular2/core into angular2/platform/common_dom

BREAKING CHANGE

Before

import {DomAdapter} from 'angular2/core';

After

import {DomAdapter} from 'angular2/platform/common_dom';

Closes #5370
This commit is contained in:
vsavkin
2015-11-19 15:09:34 -08:00
committed by Victor Savkin
parent 4d59985b74
commit 3c8fa8c50d
76 changed files with 80 additions and 75 deletions

View File

@ -3,5 +3,6 @@ export * from './core';
export * from './profile';
export * from './lifecycle_hooks';
export * from './platform/browser';
export * from './src/platform/dom/dom_adapter';
export * from './upgrade';
export {UrlResolver, AppRootUrl} from './compiler';