CC-2181: No cancel button on Update show

-Pressing "Close" will now clear the form
-Editing show will now hide "+ Show" button
This commit is contained in:
martin 2011-04-13 16:59:53 -04:00
parent 2148de0e92
commit 5b0121712b
6 changed files with 62 additions and 14 deletions

View file

@ -189,6 +189,13 @@ function setAddShowEvents() {
$("#schedule_calendar").width(y+z+50);
$("#schedule_calendar").fullCalendar('render');
$("#add-show-form").hide();
$.get("/Schedule/get-form", {format:"json"}, function(json){
$("#add-show-form")
.empty()
.append(json.form);
setAddShowEvents();
});
makeAddShowButton();
});