2
0
Fork 0
es5-ff-spa-loader/example/app_server/www_static/js/controller/page-index.js

11 lines
266 B
JavaScript
Raw Normal View History

2015-12-23 00:16:54 +00:00
pageRouteInit.push(function ($routeProvider, $locationProvider) {
$routeProvider.when('/example-ui', {
2016-01-14 21:42:13 +00:00
template: '<div><h2>Example UI Index</h2><p>Welcome make yourself at home.</p></div>',
2015-12-23 00:16:54 +00:00
controller: PageIndex
});
});
function PageIndex($scope, $http) {
}