mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-03 07:48:50 +01:00
9 lines
289 B
Text
9 lines
289 B
Text
$('#new-recurring-todo').hide();
|
|
$('#edit-recurring-todo').html(html_for_edit_form());
|
|
$('#edit-recurring-todo').show();
|
|
RecurringTodosPage.toggle_overlay();
|
|
enable_rich_interaction();
|
|
|
|
function html_for_edit_form() {
|
|
return "<%= escape_javascript(render(:partial => 'edit_form')) %>"
|
|
}
|