2
0
Fork 0

renamed include folder to thtml (templated-html)

This commit is contained in:
Willem 2015-03-09 20:13:03 +01:00
parent cc4952ac7c
commit d31beb5f74
10 changed files with 9 additions and 9 deletions

View file

@ -1,7 +1,7 @@
pageRouteInit.push(function ($routeProvider, $locationProvider) {
$routeProvider.when('/example-ui/bar', {
templateUrl: '/example-ui/include/bar',
templateUrl: '/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/include/foo',
templateUrl: '/example-ui/thtml/foo',
controller: PageFoo
});
});

View file

@ -1,7 +1,7 @@
pageRouteInit.push(function ($routeProvider, $locationProvider) {
$routeProvider.when('/example-ui', {
templateUrl: '/example-ui/include/index',
templateUrl: '/example-ui/thtml/index',
controller: PageIndex
});
});