2
0
Fork 0
node-ff-assets/example/www_static/js/controller/page-foo.js

11 lines
217 B
JavaScript

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