2
0
Fork 0
tcrud/example/www_views/js/page-foo.ejs
2017-06-10 16:53:29 +02:00

11 lines
201 B
Plaintext

pageRouteInit.push(function ($routeProvider, $locationProvider) {
$routeProvider.when('/ui/foo', {
templateUrl: '/ui/thtml/foo',
controller: PageFoo
});
});
function PageFoo($scope, $http) {
}