Monotone-Parent: 4c3313b138cb68cb3e389108d8457732594a094d

Monotone-Revision: 47946984df94ecb19a0e0f351847e1df1ec07393

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-04-14T13:22:12
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-04-14 13:22:12 +00:00
parent 0abf0fa282
commit e10d4f2fcc
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2010-04-14 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/generic.js (onRowClick): fixed a typo.
2010-04-13 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/UIxContactEditor.js (initEditorForm): we

View File

@@ -488,7 +488,7 @@ function onRowClick(event) {
// Ignore non primary-click (ie right-click) inside current selection
return true;
if ((event.shiftKey == 1 || (isMac() && event.metaKey == 1) || (!isMac() && event.ctrlKey == 1)))
if ((event.shiftKey == 1 || (isMac() && event.metaKey == 1) || (!isMac() && event.ctrlKey == 1))
&& (lastClickedRow >= 0)
&& (acceptMultiSelect(node.parentNode)
|| acceptMultiSelect(node.parentNode.parentNode))) {