aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/directive/ngView.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ng/directive/ngView.js')
-rw-r--r--src/ng/directive/ngView.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ng/directive/ngView.js b/src/ng/directive/ngView.js
index 1d2a5d29..28646822 100644
--- a/src/ng/directive/ngView.js
+++ b/src/ng/directive/ngView.js
@@ -49,11 +49,11 @@
<file name="script.js">
angular.module('ngView', [], function($routeProvider, $locationProvider) {
$routeProvider.when('/Book/:bookId', {
- template: 'book.html',
+ templateUrl: 'book.html',
controller: BookCntl
});
$routeProvider.when('/Book/:bookId/ch/:chapterId', {
- template: 'chapter.html',
+ templateUrl: 'chapter.html',
controller: ChapterCntl
});