Merge branch 'master' of dev.sourcefabric.org:airtime
This commit is contained in:
commit
0b4bab2162
|
@ -183,6 +183,13 @@ function setAddShowEvents() {
|
||||||
|
|
||||||
form.find(".add-show-submit")
|
form.find(".add-show-submit")
|
||||||
.click(function(event){
|
.click(function(event){
|
||||||
|
var addShowButton = $(this);
|
||||||
|
if (!addShowButton.hasClass("disabled")){
|
||||||
|
addShowButton.addClass("disabled");
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
|
||||||
var data = $("form").serializeArray();
|
var data = $("form").serializeArray();
|
||||||
|
@ -203,6 +210,7 @@ function setAddShowEvents() {
|
||||||
var end_date = $("#add_show_end_date").val();
|
var end_date = $("#add_show_end_date").val();
|
||||||
|
|
||||||
$.post("/Schedule/add-show", {format: "json", data: data, hosts: hosts, days: days}, function(json){
|
$.post("/Schedule/add-show", {format: "json", data: data, hosts: hosts, days: days}, function(json){
|
||||||
|
addShowButton.removeClass("disabled");
|
||||||
if(json.form) {
|
if(json.form) {
|
||||||
$("#add-show-form")
|
$("#add-show-form")
|
||||||
.empty()
|
.empty()
|
||||||
|
|
Loading…
Reference in New Issue