Commit 9017b22b authored by Pascal Hartig's avatar Pascal Hartig

AngularJS: Upgrade to 1.2.18

parent fe4e5f99
...@@ -2,11 +2,11 @@ ...@@ -2,11 +2,11 @@
"name": "todomvc-angular", "name": "todomvc-angular",
"version": "0.0.0", "version": "0.0.0",
"dependencies": { "dependencies": {
"angular": "1.2.16", "angular": "1.2.18",
"todomvc-common": "~0.1.4" "todomvc-common": "~0.1.4"
}, },
"devDependencies": { "devDependencies": {
"angular-mocks": "1.2.16", "angular-mocks": "1.2.18",
"angular-route": "1.2.16" "angular-route": "1.2.18"
} }
} }
/** /**
* @license AngularJS v1.2.16 * @license AngularJS v1.2.18
* (c) 2010-2014 Google, Inc. http://angularjs.org * (c) 2010-2014 Google, Inc. http://angularjs.org
* License: MIT * License: MIT
*/ */
...@@ -27,7 +27,7 @@ var ngRouteModule = angular.module('ngRoute', ['ng']). ...@@ -27,7 +27,7 @@ var ngRouteModule = angular.module('ngRoute', ['ng']).
/** /**
* @ngdoc provider * @ngdoc provider
* @name $routeProvider * @name $routeProvider
* @function * @kind function
* *
* @description * @description
* *
...@@ -632,7 +632,7 @@ ngRouteModule.provider('$routeParams', $RouteParamsProvider); ...@@ -632,7 +632,7 @@ ngRouteModule.provider('$routeParams', $RouteParamsProvider);
* // Route: /Chapter/:chapterId/Section/:sectionId * // Route: /Chapter/:chapterId/Section/:sectionId
* // * //
* // Then * // Then
* $routeParams ==> {chapterId:1, sectionId:2, search:'moby'} * $routeParams ==> {chapterId:'1', sectionId:'2', search:'moby'}
* ``` * ```
*/ */
function $RouteParamsProvider() { function $RouteParamsProvider() {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment