2
Fork 0

Added lots op options

This commit is contained in:
Willem 2016-01-14 22:42:13 +01:00
parent b8b21655cf
commit 95a90b51fb
19 changed files with 814 additions and 484 deletions

View file

@ -1,7 +1,7 @@
pageRouteInit.push(function ($routeProvider, $locationProvider) {
$routeProvider.when('/example-ui/bar', {
templateUrl: '/example-ui/thtml/bar',
templateUrl: window.serverUrl+'/example-ui/thtml/bar',
controller: PageFoo
});
});

View file

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

View file

@ -1,7 +1,7 @@
pageRouteInit.push(function ($routeProvider, $locationProvider) {
$routeProvider.when('/example-ui', {
templateUrl: '/example-ui/thtml/index',
template: '<div><h2>Example UI Index</h2><p>Welcome make yourself at home.</p></div>',
controller: PageIndex
});
});