fix(upgrade): Ensure upgrade adapter works on angular.js 1.2 (#8647)

This commit is contained in:
Matthew Windwer 2016-05-26 14:58:47 -04:00 committed by Miško Hevery
parent 420e83a396
commit cbc8d0adf8
1 changed files with 23 additions and 20 deletions

View File

@ -319,7 +319,8 @@ export class UpgradeAdapter {
.value(NG2_COMPONENT_FACTORY_REF_MAP, componentFactoryRefMap)
.config([
'$provide',
(provide) => {
'$injector',
(provide, ng1Injector) => {
provide.decorator(NG1_ROOT_SCOPE, [
'$delegate',
function(rootScopeDelegate: angular.IRootScopeService) {
@ -333,6 +334,7 @@ export class UpgradeAdapter {
return rootScope = rootScopeDelegate;
}
]);
if (ng1Injector.has(NG1_TESTABILITY)) {
provide.decorator(NG1_TESTABILITY, [
'$delegate',
function(testabilityDelegate: angular.ITestabilityService) {
@ -355,6 +357,7 @@ export class UpgradeAdapter {
}
]);
}
}
]);
ng1compilePromise = new Promise((resolve, reject) => {