fix: Use === in comparison

This commit is contained in:
Blade Barringer
2016-05-30 17:22:53 -05:00
parent c387c6e0a5
commit b1a2632319

View File

@@ -191,7 +191,7 @@ habitrpg.controller("TasksCtrl", ['$scope', '$rootScope', '$location', 'User','N
$scope.addChecklistItem = function(task, $event, $index) { $scope.addChecklistItem = function(task, $event, $index) {
if (task.checklist[$index].text) { if (task.checklist[$index].text) {
$scope.saveTask(task, true); $scope.saveTask(task, true);
if ($index == task.checklist.length - 1) if ($index === task.checklist.length - 1)
task.checklist.push({ completed: false, text: '' }); task.checklist.push({ completed: false, text: '' });
focusChecklist(task, $index + 1); focusChecklist(task, $index + 1);
} else { } else {