2
0
Fork 0
es5-ff-spa-loader/example/www_static/js/controller/page-foo.js
2016-01-14 22:42:13 +01:00

11 lines
242 B
JavaScript

pageRouteInit.push(function ($routeProvider, $locationProvider) {
$routeProvider.when('/example-ui/foo', {
template: '<div><h2>Foo</h2><p>Welcome to the foo.</p></div>',
controller: PageFoo
});
});
function PageFoo($scope, $http) {
}