Commit 3af79520 authored by Pascal Hartig's avatar Pascal Hartig

Merge pull request #720 from torifat/gh-pages

angularjs_require: upgrade angular to 1.2.1
parents 9f3ee34c d8022a08
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
"name": "todomvc-angular", "name": "todomvc-angular",
"version": "0.0.0", "version": "0.0.0",
"dependencies": { "dependencies": {
"angular": "~1.2.0", "angular": "~1.2.1",
"todomvc-common": "~0.1.4" "todomvc-common": "~0.1.4"
}, },
"devDependencies": { "devDependencies": {
"angular-mocks": "~1.2.0" "angular-mocks": "~1.2.1"
} }
} }
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
"name": "todomvc-angular-requirejs", "name": "todomvc-angular-requirejs",
"version": "0.0.0", "version": "0.0.0",
"dependencies": { "dependencies": {
"angular": "~1.0.7", "angular": "~1.2.1",
"todomvc-common": "~0.1.4", "todomvc-common": "~0.1.9",
"requirejs": "~2.1.5" "requirejs": "~2.1.9"
} }
} }
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
<button class="destroy" ng-click="removeTodo(todo)"></button> <button class="destroy" ng-click="removeTodo(todo)"></button>
</div> </div>
<form ng-submit="doneEditing(todo)"> <form ng-submit="doneEditing(todo)">
<input class="edit" ng-model="todo.title" todo-blur="doneEditing(todo)" todo-focus="todo == editedTodo"> <input class="edit" ng-trim="false" ng-model="todo.title" todo-blur="doneEditing(todo)" todo-focus="todo == editedTodo">
</form> </form>
</li> </li>
</ul> </ul>
......
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