Hideable Scheduled Shows tab

Makes the first tab remoeable and the tracks page be full width after removing the last tab. You can press the "Dashboard" link to open it back up again.
This commit is contained in:
Lucas Bickel 2017-03-21 00:18:22 +01:00
parent 81d3c3e2b8
commit 6e712b4b82
5 changed files with 61 additions and 17 deletions

View file

@ -855,17 +855,20 @@ var AIRTIME = (function(AIRTIME){
tab.close();
$.ajax( {
url : baseUrl+"usersettings/set-library-screen-settings",
type : "POST",
data : {
settings : {
playlist : false
// save settings if we are not closing the "Scheduled Shows" tab
if (tabId != "0") {
$.ajax( {
url : baseUrl+"usersettings/set-library-screen-settings",
type : "POST",
data : {
settings : {
playlist : false
},
format : "json"
},
format : "json"
},
dataType : "json"
});
dataType : "json"
});
}
});
$pl.find("#save_button").unbind().on("click", function(event) {