mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
Nothing would prevent a user from accidentally calling angular.bootstrap on an element that had already been bootstrapped. If this was done, odd behavior could manifest in an application, causing different scopes to update the same DOM, and causing debugger confusion. This fix adds a check inside of angular.bootstrap to check if the passed-in element already has an injector, and if so, will throw an error.
29 lines
656 B
Text
29 lines
656 B
Text
@ngdoc error
|
|
@name ng:btstrpd
|
|
@fullName App Already Bootstrapped with this Element
|
|
@description
|
|
|
|
Occurs when calling angular.bootstrap on an element that has already been bootstrapped.
|
|
|
|
This usually happens when you accidentally use both `ng-app` and `angular.bootstrap` to bootstrap an application.
|
|
|
|
```
|
|
<html>
|
|
...
|
|
<body ng-app="myApp">
|
|
<script>
|
|
angular.bootstrap(document.body, ['myApp']);
|
|
</script>
|
|
</body>
|
|
</html>
|
|
```
|
|
|
|
Note that for bootrapping purposes, the `<html>` element is the same as `document`, so the following will also throw an error.
|
|
```
|
|
<html>
|
|
...
|
|
<script>
|
|
angular.bootstrap(document, ['myApp']);
|
|
</script>
|
|
</html>
|
|
```
|