cannot schedule anything in a show that overlaps.
This commit is contained in:
parent
74210b4c6d
commit
c0d379e306
2 changed files with 13 additions and 1 deletions
|
@ -165,8 +165,14 @@ function buildContentDialog(json){
|
|||
}
|
||||
|
||||
function buildScheduleDialog(json){
|
||||
var dialog = $(json.dialog);
|
||||
var dialog;
|
||||
|
||||
if(json.error) {
|
||||
alert(json.error);
|
||||
return;
|
||||
}
|
||||
|
||||
dialog = $(json.dialog);
|
||||
makeScheduleDialog(dialog, json);
|
||||
|
||||
dialog.dialog({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue