docs(guide/bootstrap): remove extra call to angular.module()

There was an extra call to angular.module() not being used in 'getter' mode. While this doesn't
break the demo app, it does look kind of weird, so lets toss it.

Closes #6969
This commit is contained in:
Jonathan Woodard
2014-04-02 21:50:13 -06:00
committed by Caitlin Potter
parent 549166740b
commit 6cd6ec62fd

View File

@@ -100,7 +100,6 @@ Here is an example of manually initializing Angular:
}]);
angular.element(document).ready(function() {
angular.module('myApp', []);
angular.bootstrap(document, ['myApp']);
});
</script>