Skip to content

Commit

Permalink
Merge pull request tastejs#1153 from jnthas/master
Browse files Browse the repository at this point in the history
Bug fix in angular example (issue tastejs#1083)
  • Loading branch information
sindresorhus committed Feb 11, 2015
2 parents b55589f + e8c21d6 commit 3fa235a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions examples/angularjs/js/controllers/todoCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ angular.module('todomvc')
todo.title = todo.title.trim();

if (todo.title === $scope.originalTodo.title) {
$scope.editedTodo = null;
return;
}

Expand Down

0 comments on commit 3fa235a

Please sign in to comment.