CC-6066 - initial work on add/remove content dialog; some selection fixes
This commit is contained in:
parent
f7733757f6
commit
812dca9409
13 changed files with 86 additions and 33 deletions
|
@ -853,6 +853,11 @@ var AIRTIME = (function(AIRTIME){
|
|||
} else if (ev.ctrlKey) {
|
||||
$tr.removeClass(SB_SELECTED_CLASS);
|
||||
$tr.find(".sb-checkbox > input").prop('checked', false);
|
||||
} else if (ev.which === 3 /* Right click */) {
|
||||
mod.selectNone();
|
||||
$tr.addClass(SB_SELECTED_CLASS);
|
||||
$tr.find(".sb-checkbox > input").prop('checked', true);
|
||||
mod.checkToolBarIcons();
|
||||
}
|
||||
|
||||
selectedRows = $("." + SB_SELECTED_CLASS);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue