Il seguente file "funziona" (nel senso che non genera errori):
<!doctype html>
<html ng-app="modx">
<script src="http://code.angularjs.org/angular-1.0.0rc7.js"></script>
<script>
angular.module("modx", [], function($routeProvider) {
});
</script>
</html>
ma questo
<!doctype html>
<html ng-app="modx">
<script src="http://code.angularjs.org/angular-1.0.0rc7.js"></script>
<script>
angular.module("modx", [], function($routeProvider, $rootScope) {
});
</script>
</html>
dà l'errore:
Errore: provider sconosciuto: $ rootScope dal
file sorgente modx : http://code.angularjs.org/angular-1.0.0rc7.js
Linea: 2491
WTF?