RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: theycallmeS
for those having 'undefined' tasks on the list in their example, change the addtask function to the following:
function addTask(line) { $('#tasks').append('' + line.task.name + ''); }
for those having 'undefined' tasks on the list in their example, change the addtask function to the following:
function addTask(line) {
$('#tasks').append('' + line.task.name + '');
}