- fixed formatting
This commit is contained in:
parent
02d02cd460
commit
fdd889d7a8
|
@ -133,7 +133,8 @@ AIRTIME = (function(AIRTIME) {
|
||||||
$builder.find(dateEndId).datepicker(oBaseDatePickerSettings);
|
$builder.find(dateEndId).datepicker(oBaseDatePickerSettings);
|
||||||
$builder.find(timeEndId).timepicker(oBaseTimePickerSettings);
|
$builder.find(timeEndId).timepicker(oBaseTimePickerSettings);
|
||||||
|
|
||||||
oRange = AIRTIME.utilities.fnGetScheduleRange(dateStartId, timeStartId, dateEndId, timeEndId);
|
oRange = AIRTIME.utilities.fnGetScheduleRange(dateStartId, timeStartId,
|
||||||
|
dateEndId, timeEndId);
|
||||||
AIRTIME.showbuilder.fnServerData.start = oRange.start;
|
AIRTIME.showbuilder.fnServerData.start = oRange.start;
|
||||||
AIRTIME.showbuilder.fnServerData.end = oRange.end;
|
AIRTIME.showbuilder.fnServerData.end = oRange.end;
|
||||||
|
|
||||||
|
@ -144,7 +145,8 @@ AIRTIME = (function(AIRTIME) {
|
||||||
$libWrapper = $lib.find("#library_display_wrapper");
|
$libWrapper = $lib.find("#library_display_wrapper");
|
||||||
$libWrapper.prepend($libClose);
|
$libWrapper.prepend($libClose);
|
||||||
|
|
||||||
$builder.find('.dataTables_scrolling').css("max-height", widgetHeight - 95);
|
$builder.find('.dataTables_scrolling').css("max-height",
|
||||||
|
widgetHeight - 95);
|
||||||
|
|
||||||
$builder.on("click", "#sb_submit", showSearchSubmit);
|
$builder.on("click", "#sb_submit", showSearchSubmit);
|
||||||
|
|
||||||
|
@ -154,25 +156,26 @@ AIRTIME = (function(AIRTIME) {
|
||||||
// reset timestamp to redraw the cursors.
|
// reset timestamp to redraw the cursors.
|
||||||
AIRTIME.showbuilder.resetTimestamp();
|
AIRTIME.showbuilder.resetTimestamp();
|
||||||
|
|
||||||
$lib.show()
|
$lib.show().width(Math.floor(screenWidth * 0.48));
|
||||||
.width(Math.floor(screenWidth * 0.48));
|
|
||||||
|
|
||||||
$builder.width(Math.floor(screenWidth * 0.48))
|
$builder.width(Math.floor(screenWidth * 0.48)).find("#sb_edit")
|
||||||
.find("#sb_edit")
|
.remove().end().find("#sb_date_start")
|
||||||
.remove()
|
.css("margin-left", 0).end();
|
||||||
.end()
|
|
||||||
.find("#sb_date_start")
|
|
||||||
.css("margin-left", 0)
|
|
||||||
.end();
|
|
||||||
|
|
||||||
schedTable.fnDraw();
|
schedTable.fnDraw();
|
||||||
|
|
||||||
$.ajax( {
|
$.ajax( {
|
||||||
url : "/usersettings/set-now-playing-screen-settings",
|
url : "/usersettings/set-now-playing-screen-settings",
|
||||||
type : "POST",
|
type : "POST",
|
||||||
data: {settings : {library : true}, format: "json"},
|
data : {
|
||||||
|
settings : {
|
||||||
|
library : true
|
||||||
|
},
|
||||||
|
format : "json"
|
||||||
|
},
|
||||||
dataType : "json",
|
dataType : "json",
|
||||||
success: function(){}
|
success : function() {
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -180,13 +183,9 @@ AIRTIME = (function(AIRTIME) {
|
||||||
var schedTable = $("#show_builder_table").dataTable();
|
var schedTable = $("#show_builder_table").dataTable();
|
||||||
|
|
||||||
$lib.hide();
|
$lib.hide();
|
||||||
$builder.width(screenWidth)
|
$builder.width(screenWidth).find(".sb-timerange").prepend(
|
||||||
.find(".sb-timerange")
|
$toggleLib).find("#sb_date_start").css("margin-left", 30)
|
||||||
.prepend($toggleLib)
|
.end().end();
|
||||||
.find("#sb_date_start")
|
|
||||||
.css("margin-left", 30)
|
|
||||||
.end()
|
|
||||||
.end();
|
|
||||||
|
|
||||||
$toggleLib.removeClass("ui-state-hover");
|
$toggleLib.removeClass("ui-state-hover");
|
||||||
schedTable.fnDraw();
|
schedTable.fnDraw();
|
||||||
|
@ -194,26 +193,35 @@ AIRTIME = (function(AIRTIME) {
|
||||||
$.ajax( {
|
$.ajax( {
|
||||||
url : "/usersettings/set-now-playing-screen-settings",
|
url : "/usersettings/set-now-playing-screen-settings",
|
||||||
type : "POST",
|
type : "POST",
|
||||||
data: {settings : {library : false}, format: "json"},
|
data : {
|
||||||
|
settings : {
|
||||||
|
library : false
|
||||||
|
},
|
||||||
|
format : "json"
|
||||||
|
},
|
||||||
dataType : "json",
|
dataType : "json",
|
||||||
success: function(){}
|
success : function() {
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
$builder.find('legend').click(function(ev, item){
|
$builder.find('legend').click(
|
||||||
|
function(ev, item) {
|
||||||
|
|
||||||
if ($fs.hasClass("closed")) {
|
if ($fs.hasClass("closed")) {
|
||||||
|
|
||||||
$fs.removeClass("closed");
|
$fs.removeClass("closed");
|
||||||
$builder.find('.dataTables_scrolling').css("max-height", widgetHeight - 150);
|
$builder.find('.dataTables_scrolling').css(
|
||||||
}
|
"max-height", widgetHeight - 150);
|
||||||
else {
|
} else {
|
||||||
$fs.addClass("closed");
|
$fs.addClass("closed");
|
||||||
|
|
||||||
// set defaults for the options.
|
// set defaults for the options.
|
||||||
$fs.find('select').val(0);
|
$fs.find('select').val(0);
|
||||||
$fs.find('input[type="checkbox"]').attr("checked", false);
|
$fs.find('input[type="checkbox"]').attr("checked",
|
||||||
$builder.find('.dataTables_scrolling').css("max-height", widgetHeight - 110);
|
false);
|
||||||
|
$builder.find('.dataTables_scrolling').css(
|
||||||
|
"max-height", widgetHeight - 110);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -231,7 +239,8 @@ AIRTIME = (function(AIRTIME) {
|
||||||
$builder.on("change", '#sb_show_filter', function(ev) {
|
$builder.on("change", '#sb_show_filter', function(ev) {
|
||||||
|
|
||||||
if ($(this).val() !== 0) {
|
if ($(this).val() !== 0) {
|
||||||
$(ev.delegateTarget).find('#sb_my_shows').attr("checked", false);
|
$(ev.delegateTarget).find('#sb_my_shows')
|
||||||
|
.attr("checked", false);
|
||||||
}
|
}
|
||||||
|
|
||||||
showSearchSubmit();
|
showSearchSubmit();
|
||||||
|
@ -239,11 +248,8 @@ AIRTIME = (function(AIRTIME) {
|
||||||
});
|
});
|
||||||
|
|
||||||
function checkScheduleUpdates() {
|
function checkScheduleUpdates() {
|
||||||
var data = {},
|
var data = {}, oTable = $('#show_builder_table').dataTable(), fn = oTable
|
||||||
oTable = $('#show_builder_table').dataTable(),
|
.fnSettings().fnServerData, start = fn.start, end = fn.end;
|
||||||
fn = oTable.fnSettings().fnServerData,
|
|
||||||
start = fn.start,
|
|
||||||
end = fn.end;
|
|
||||||
|
|
||||||
data["format"] = "json";
|
data["format"] = "json";
|
||||||
data["start"] = start;
|
data["start"] = start;
|
||||||
|
|
Loading…
Reference in New Issue