fix(HtmlParser): consider <ng-container> when adding required parents

This commit is contained in:
Victor Berchet
2016-06-15 09:37:33 -07:00
parent 9cbd8f7afc
commit 9ba400d7d5
5 changed files with 94 additions and 30 deletions

View File

@ -8,7 +8,7 @@ import {TestInjector, async, getTestInjector, inject, injectAsync} from './test_
export {async, inject, injectAsync} from './test_injector';
declare var global: any /** TODO #9100 */;
declare var global: any;
var _global = <any>(typeof window === 'undefined' ? global : window);