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

11 lines
217 B
JavaScript
Raw Normal View History

2015-02-27 14:20:01 +00:00
pageRouteInit.push(function ($routeProvider, $locationProvider) {
$routeProvider.when('/example-ui/foo', {
templateUrl: '/example-ui/thtml/foo',
2015-02-27 14:20:01 +00:00
controller: PageFoo
});
});
function PageFoo($scope, $http) {
}