Merge branch 'saas-dev-publishing' into saas-dev-publishing-station-podcast

This commit is contained in:
Duncan Sommerville 2015-11-13 15:59:57 -05:00
commit 7569e936ce
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})