* This change appears to restore ctrl-click's ability to deselect a currently selecte...
authorArt Cancro <ajc@citadel.org>
Wed, 22 Jul 2009 21:35:12 +0000 (21:35 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 22 Jul 2009 21:35:12 +0000 (21:35 +0000)
webcit/static/summaryview.js

index dc329cc698ac1dbd7e1e8830d08469c51b6ae2f0..03336fe0b18c5fbf1723d7955fa0f48546884c19 100644 (file)
@@ -274,7 +274,7 @@ function CtdlMessageListClick(evt) {
     }
   // If the ctrl key modifier is used, toggle one message
   } else if (event.button != 2 && (event.ctrlKey || event.altKey)) {
-    if (parent.ctdlMarked == true) {
+    if (parent.getAttribute("citadel:marked")) {
       unmarkRow(parent);
     }
     else {