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

@ -45,12 +45,12 @@
<div class="btn-toolbar clearfix">
<div class="btn-group pull-right">
<button ng-click="discard()" class="btn" type="button" name="cancel">
<button ng-click="discard()" class="btn" type="button" name="close">
<?php echo _("Close") ?>
</button>
</div>
<div class='btn-group pull-right'>
<button ng-click="publish()" class="btn" title='<?php echo _("Publish") ?>' type="button">
<button disabled="disabled" ng-click="publish()" class="btn publish-btn" title='<?php echo _("Publish") ?>' type="button">
<?php echo _("Publish") ?>
</button>
</div>

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})