git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@21760
e93f8b46-1217-0410-a6f0-
8f06a7374b81
if (lastSelected.length) {
var toggling = false;
$('.hascontextmenu').each(function(){
- if (toggling || $(this).is(tr)) {
+ $elm = $(this)
+ if (!$elm.is(lastSelected) && (toggling || $elm.is(tr))) {
contextMenuAddSelection($(this));
contextMenuClearDocumentSelection();
}
- if ($(this).is(tr) || $(this).is(lastSelected)) {
+ if ($elm.is(lastSelected) !== $elm.is(tr)) {
toggling = !toggling;
}
});