Commit 59cabea6 authored by Pascal Hartig's avatar Pascal Hartig

Update all AngularJS apps to 1.2.7

parent da052bf1
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name": "todomvc-angular-perf", "name": "todomvc-angular-perf",
"version": "0.0.0", "version": "0.0.0",
"dependencies": { "dependencies": {
"angular": "~1.2.1", "angular": "1.2.7",
"todomvc-common": "~0.1.9" "todomvc-common": "~0.1.9"
} }
} }
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -78,7 +78,7 @@ todomvc.controller('TodoCtrl', function TodoCtrl($scope, $location, todoStorage, ...@@ -78,7 +78,7 @@ todomvc.controller('TodoCtrl', function TodoCtrl($scope, $location, todoStorage,
$scope.markAll = function (completed) { $scope.markAll = function (completed) {
todos.forEach(function (todo) { todos.forEach(function (todo) {
todo.completed = completed; todo.completed = !completed;
}); });
$scope.remainingCount = completed ? 0 : todos.length; $scope.remainingCount = completed ? 0 : todos.length;
todoStorage.put(todos); todoStorage.put(todos);
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name": "todomvc-angular", "name": "todomvc-angular",
"version": "0.0.0", "version": "0.0.0",
"dependencies": { "dependencies": {
"angular": "1.2.6", "angular": "1.2.7",
"angularfire": "~0.5.0", "angularfire": "~0.5.0",
"todomvc-common": "~0.1.4" "todomvc-common": "~0.1.4"
}, },
......
/** /**
* @license AngularJS v1.2.7-build.2025+sha.d1c4766 * @license AngularJS v1.2.6
* (c) 2010-2014 Google, Inc. http://angularjs.org * (c) 2010-2014 Google, Inc. http://angularjs.org
* License: MIT * License: MIT
*/ */
......
{ {
"name": "angular", "name": "angular",
"version": "1.2.7-build.2025+sha.d1c4766", "version": "1.2.7",
"main": "./angular.js", "main": "./angular.js",
"dependencies": { "dependencies": {
} }
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name": "todomvc-typescript-angular", "name": "todomvc-typescript-angular",
"version": "0.0.0", "version": "0.0.0",
"dependencies": { "dependencies": {
"angular": "1.2.6", "angular": "1.2.7",
"todomvc-common": "~0.1.6" "todomvc-common": "~0.1.6"
} }
} }
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name": "todomvc-angular-requirejs", "name": "todomvc-angular-requirejs",
"version": "0.0.0", "version": "0.0.0",
"dependencies": { "dependencies": {
"angular": "1.2.6", "angular": "1.2.7",
"todomvc-common": "~0.1.9", "todomvc-common": "~0.1.9",
"requirejs": "~2.1.9" "requirejs": "~2.1.9"
} }
......
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