MCPcopy
hub / github.com/angular-ui/ui-router / doBootstrap

Function doBootstrap

test/angular/1.7/angular.js:1937–1972  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1935 };
1936 config = extend(defaultConfig, config);
1937 var doBootstrap = function() {
1938 element = jqLite(element);
1939
1940 if (element.injector()) {
1941 var tag = (element[0] === window.document) ? 'document' : startingTag(element);
1942 // Encode angle brackets to prevent input from being sanitized to empty string #8683.
1943 throw ngMinErr(
1944 'btstrpd',
1945 'App already bootstrapped with this element \'{0}\'',
1946 tag.replace(/</,'&lt;').replace(/>/,'&gt;'));
1947 }
1948
1949 modules = modules || [];
1950 modules.unshift(['$provide', function($provide) {
1951 $provide.value('$rootElement', element);
1952 }]);
1953
1954 if (config.debugInfoEnabled) {
1955 // Pushing so that this overrides `debugInfoEnabled` setting defined in user's `modules`.
1956 modules.push(['$compileProvider', function($compileProvider) {
1957 $compileProvider.debugInfoEnabled(true);
1958 }]);
1959 }
1960
1961 modules.unshift('ng');
1962 var injector = createInjector(modules, config.strictDi);
1963 injector.invoke(['$rootScope', '$rootElement', '$compile', '$injector',
1964 function bootstrapApply(scope, element, compile, injector) {
1965 scope.$apply(function() {
1966 element.data('$injector', injector);
1967 compile(element)(scope);
1968 });
1969 }]
1970 );
1971 return injector;
1972 };
1973
1974 var NG_ENABLE_DEBUG_INFO = /^NG_ENABLE_DEBUG_INFO!/;
1975 var NG_DEFER_BOOTSTRAP = /^NG_DEFER_BOOTSTRAP!/;

Callers 1

bootstrapFunction · 0.70

Calls 3

startingTagFunction · 0.70
createInjectorFunction · 0.70
compileFunction · 0.70

Tested by

no test coverage detected