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

11 lines
234 B
JavaScript
Raw Normal View History

2015-12-23 00:16:54 +00:00
pageRouteInit.push(function ($routeProvider, $locationProvider) {
$routeProvider.when('/example-ui/bar', {
2016-01-14 21:42:13 +00:00
templateUrl: window.serverUrl+'/example-ui/thtml/bar',
2015-12-23 00:16:54 +00:00
controller: PageFoo
});
});
function PageFoo($scope, $http) {
}