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