File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -994,7 +994,7 @@ function angularInit(element, bootstrap) {
994
994
* @returns {AUTO.$injector } Returns the newly created injector for this app.
995
995
*/
996
996
function bootstrap ( element , modules ) {
997
- var resumeBootstrapInternal = function ( ) {
997
+ var doBootstrap = function ( ) {
998
998
element = jqLite ( element ) ;
999
999
modules = modules || [ ] ;
1000
1000
modules . unshift ( [ '$provide' , function ( $provide ) {
@@ -1017,15 +1017,15 @@ function bootstrap(element, modules) {
1017
1017
var NG_DEFER_BOOTSTRAP = / ^ N G _ D E F E R _ B O O T S T R A P ! / ;
1018
1018
1019
1019
if ( window && ! NG_DEFER_BOOTSTRAP . test ( window . name ) ) {
1020
- return resumeBootstrapInternal ( ) ;
1020
+ return doBootstrap ( ) ;
1021
1021
}
1022
1022
1023
1023
window . name = window . name . replace ( NG_DEFER_BOOTSTRAP , '' ) ;
1024
1024
angular . resumeBootstrap = function ( extraModules ) {
1025
1025
forEach ( extraModules , function ( module ) {
1026
1026
modules . push ( module ) ;
1027
1027
} ) ;
1028
- resumeBootstrapInternal ( ) ;
1028
+ doBootstrap ( ) ;
1029
1029
} ;
1030
1030
}
1031
1031
You can’t perform that action at this time.
0 commit comments