2
0
Fork 0
es5-ff-spa-loader/example/www_static/js/controller/page-index.js
2016-01-14 22:42:13 +01:00

11 lines
266 B
JavaScript

pageRouteInit.push(function ($routeProvider, $locationProvider) {
$routeProvider.when('/example-ui', {
template: '<div><h2>Example UI Index</h2><p>Welcome make yourself at home.</p></div>',
controller: PageIndex
});
});
function PageIndex($scope, $http) {
}