11 lines
201 B
Plaintext
11 lines
201 B
Plaintext
|
|
pageRouteInit.push(function ($routeProvider, $locationProvider) {
|
|
$routeProvider.when('/ui/bar', {
|
|
templateUrl: '/ui/thtml/bar',
|
|
controller: PageFoo
|
|
});
|
|
});
|
|
|
|
function PageFoo($scope, $http) {
|
|
}
|