CC-4609: Calendar -> Add/Remove contents: Please remove useless buttons: 'Jump to current playing song' and 'Cancel current show'
-done
This commit is contained in:
parent
5f0fd0ef09
commit
b08f5091b5
|
@ -649,6 +649,8 @@ var AIRTIME = (function(AIRTIME){
|
||||||
},
|
},
|
||||||
"fnDrawCallback": function fnBuilderDrawCallback(oSettings, json) {
|
"fnDrawCallback": function fnBuilderDrawCallback(oSettings, json) {
|
||||||
if (!isInitialized) {
|
if (!isInitialized) {
|
||||||
|
//when coming to 'Now Playing' page we want the page
|
||||||
|
//to jump to the current track
|
||||||
if ($(this).find("."+NOW_PLAYING_CLASS).length > 0) {
|
if ($(this).find("."+NOW_PLAYING_CLASS).length > 0) {
|
||||||
mod.jumpToCurrentTrack();
|
mod.jumpToCurrentTrack();
|
||||||
}
|
}
|
||||||
|
@ -985,13 +987,18 @@ var AIRTIME = (function(AIRTIME){
|
||||||
"<i class='icon-white icon-cut'></i></button></div>")
|
"<i class='icon-white icon-cut'></i></button></div>")
|
||||||
.append("<div class='btn-group'>" +
|
.append("<div class='btn-group'>" +
|
||||||
"<button title='Remove selected scheduled items' class='ui-state-disabled btn btn-small' disabled='disabled'>" +
|
"<button title='Remove selected scheduled items' class='ui-state-disabled btn btn-small' disabled='disabled'>" +
|
||||||
"<i class='icon-white icon-trash'></i></button></div>")
|
"<i class='icon-white icon-trash'></i></button></div>");
|
||||||
.append("<div class='btn-group'>" +
|
|
||||||
|
//if 'Add/Remove content' was chosen from the context menu
|
||||||
|
//in the Calendar do not append these buttons
|
||||||
|
if ($(".ui-dialog-content").length === 0) {
|
||||||
|
$menu.append("<div class='btn-group'>" +
|
||||||
"<button title='Jump to the current playing track' class='ui-state-disabled btn btn-small' disabled='disabled'>" +
|
"<button title='Jump to the current playing track' class='ui-state-disabled btn btn-small' disabled='disabled'>" +
|
||||||
"<i class='icon-white icon-step-forward'></i></button></div>")
|
"<i class='icon-white icon-step-forward'></i></button></div>")
|
||||||
.append("<div class='btn-group'>" +
|
.append("<div class='btn-group'>" +
|
||||||
"<button title='Cancel current show' class='ui-state-disabled btn btn-small btn-danger' disabled='disabled'>" +
|
"<button title='Cancel current show' class='ui-state-disabled btn btn-small btn-danger' disabled='disabled'>" +
|
||||||
"<i class='icon-white icon-ban-circle'></i></button></div>");
|
"<i class='icon-white icon-ban-circle'></i></button></div>");
|
||||||
|
}
|
||||||
|
|
||||||
$toolbar.append($menu);
|
$toolbar.append($menu);
|
||||||
$menu = undefined;
|
$menu = undefined;
|
||||||
|
|
Loading…
Reference in New Issue