Skip to content

Commit

Permalink
added a number to allow people to easily pick items to pop. fixes Aut…
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Dec 12, 2011
1 parent 0185284 commit 3296e9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/taskng.js
Expand Up @@ -32,7 +32,7 @@ TaskNG.prototype.view = function(){
if (err) throw err;
var task = JSON.parse(data);
for (var i=0; i < task.tasks.length; i++){
console.log(task.tasks[i]);
console.log("#" + (i + 1) + " : " + task.tasks[i]);
}
});
};
Expand Down

0 comments on commit 3296e9e

Please sign in to comment.