docs(ngRoute): make config block for the routeProvider example explicit

This commit is contained in:
David Mosher 2013-07-30 10:20:42 -06:00 committed by Pawel Kozlowski
parent d1cdd4d026
commit 6d7ee1ad3b

View file

@ -220,7 +220,7 @@ function $RouteProvider(){
</file>
<file name="script.js">
angular.module('ngView', ['ngRoute'], function($routeProvider, $locationProvider) {
angular.module('ngView', ['ngRoute']).config(function($routeProvider, $locationProvider) {
$routeProvider.when('/Book/:bookId', {
templateUrl: 'book.html',
controller: BookCntl,