SAAS-948 - fix smartblock save and tab close functionality, implement 'super' checkbox

This commit is contained in:
Duncan Sommerville 2015-08-10 18:46:12 -04:00
parent 849b8038ce
commit c9f9bed2d6
6 changed files with 61 additions and 24 deletions

View file

@ -119,6 +119,7 @@ var AIRTIME = (function(AIRTIME){
AIRTIME.playlist.setAsActive();
}
AIRTIME.playlist.onResize();
AIRTIME.library.fnRedraw();
};
@ -822,6 +823,7 @@ var AIRTIME = (function(AIRTIME){
$(this).find(".sb-checkbox > input").prop('checked', true);
}
selectedRows = $("." + SB_SELECTED_CLASS);
mod.checkToolBarIcons();
});
//begin context menu initialization.
@ -1017,7 +1019,7 @@ var AIRTIME = (function(AIRTIME){
return {
placeholder: "sb-placeholder ui-state-highlight",
//forcePlaceholderSize: true,
distance: 10,
distance: 25,
helper:
function(event, item) {
var selected = mod.getSelectedData(NOW_PLAYING_CLASS),
@ -1069,6 +1071,8 @@ var AIRTIME = (function(AIRTIME){
cancel: '.sb-footer',
receive: fnReceive,
update: fnUpdate,
axis: "y",
containment: "document",
start: function(event, ui) {
var elements = $sbTable.find('tr.'+SB_SELECTED_CLASS).not("."+NOW_PLAYING_CLASS);
elements.hide();