2
0
Fork 0
tcrud/example/www_views/js/page-foo.ejs

11 lines
201 B
Plaintext
Raw Normal View History

2017-06-10 14:53:29 +00:00
pageRouteInit.push(function ($routeProvider, $locationProvider) {
$routeProvider.when('/ui/foo', {
templateUrl: '/ui/thtml/foo',
controller: PageFoo
});
});
function PageFoo($scope, $http) {
}