Disable publish button unless at least one source is checked

This commit is contained in:
Duncan Sommerville 2015-11-13 15:59:34 -05:00
parent d0265367bf
commit 840f446e07
2 changed files with 12 additions and 2 deletions

View file

@ -19,6 +19,16 @@ var AIRTIME = (function (AIRTIME) {
$scope.publishData = {};
var sourceInterval;
tab.contents.on("click", "input[type='checkbox']", function () {
var noSourcesChecked = true;
$.each(tab.contents.find("input[type='checkbox']"), function () {
if ($(this).is(":checked")) {
noSourcesChecked = false;
}
});
tab.contents.find(".publish-btn").prop("disabled", noSourcesChecked);
});
function fetchSourceData() {
var csrfToken = jQuery("#csrf").val();
$http.get(endpoint + mediaId, {csrf_token: csrfToken})