1
0
Fork 0
cauldron-frontend/js/module.js
2016-01-14 14:28:36 -06:00

16 lines
336 B
JavaScript

angular.module("cauldron", ['ngRoute'])
.config(['$routeProvider',
function($routeProvider){
$routeProvider.when('/',{
templateUrl:'/views/indexView.html',
})
.otherwise({
redirectTo: '/',
});
}
])
.directive('brewEntry', function() {
return {
templateUrl: '/js/directives/brewEntry.html'
};
});