UNPKG

239 BJavaScriptView Raw
1var app = angular.module('ang', []);
2
3app.controller('Controller', function($scope) {
4 console.log( "works" );
5});
6
7app.config(function($rootScope) {
8 console.log( "works" );
9});
10
11app.run(function($rootScope) {
12 console.log( "works" );
13});
\No newline at end of file