4ca3273b9c
- fadeIn on scripts ready and angular bootstrap
21 lines
544 B
JavaScript
21 lines
544 B
JavaScript
// Generated by CoffeeScript 1.3.1
|
|
(function() {
|
|
|
|
angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives']).config([
|
|
'$routeProvider', function($routeProvider) {
|
|
$routeProvider.when('/view1', {
|
|
templateUrl: 'partials/partial1.html',
|
|
controller: MyCtrl1
|
|
});
|
|
$routeProvider.when('/view2', {
|
|
templateUrl: 'partials/partial2.html',
|
|
controller: MyCtrl2
|
|
});
|
|
return $routeProvider.otherwise({
|
|
redirectTo: '/view1'
|
|
});
|
|
}
|
|
]);
|
|
|
|
}).call(this);
|