ah-dashboard-plugin
Version:
Plugin for an ActionHero Dashboard with many functionalities
26 lines (18 loc) • 564 B
JavaScript
;
angular.module('exampleApp', [
'ngRoute',
'angularjs-dropdown-multiselect',
'hljs',
'ui.bootstrap'
]).
config(['$routeProvider', '$locationProvider', '$compileProvider',
function($routeProvider, $locationProvider) {
$locationProvider.html5Mode(false);
var appPathRoute = '/';
var pagesPath = staticPath + 'javascripts/pages/';
$routeProvider.when('/', {
templateUrl: pagesPath + 'home/home.html'
});
$routeProvider.otherwise('/');
}
]);