tracks/app/views/recurring_todos/edit.js.erb
2014-08-13 15:33:32 +02:00

11 lines
No EOL
376 B
Text

<% object_name = unique_object_name_for("edit_rec_todo_#{@recurring_todo.id}") -%>
var <%=object_name%> = {
animate: function() {
$('#edit-recurring-todo').html(<%=object_name%>.html_for_edit_form());
$('#edit-recurring-todo').dialog( "open" );
},
html_for_edit_form: function() {
return "<%= js_render('edit_form') %>";
}
}
<%=object_name%>.animate();