From: Art Cancro Date: Wed, 22 Jul 2009 21:35:12 +0000 (+0000) Subject: * This change appears to restore ctrl-click's ability to deselect a currently selecte... X-Git-Tag: v7.86~961 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=3a83c0a963492ae6b3f49a59526688c4c2c2d267 * This change appears to restore ctrl-click's ability to deselect a currently selected message. --- diff --git a/webcit/static/summaryview.js b/webcit/static/summaryview.js index dc329cc69..03336fe0b 100644 --- a/webcit/static/summaryview.js +++ b/webcit/static/summaryview.js @@ -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 {