From a26a77cd3fd30ad95721e58de948218cbd79a287 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 1 Sep 2006 18:53:57 +0000 Subject: [PATCH] Found the cause of Bug #173 and added a comment to the code showing where to fix it. (I don't have the time right now to fix it but will do this later.) --- webcit/static/wclib.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webcit/static/wclib.js b/webcit/static/wclib.js index 23999c756..5a536b396 100644 --- a/webcit/static/wclib.js +++ b/webcit/static/wclib.js @@ -154,6 +154,8 @@ function CtdlSingleClickMsg(evt, msgnum) { if ( (evt.ctrlKey) && (already_selected == 1) ) { $('m'+msgnum).style.backgroundColor = '#fff'; $('m'+msgnum).style.color = '#000'; + // FIXME pull the message out of the selected list here, stupid. + // this will fix Bugzilla #173 } else { $('m'+msgnum).style.backgroundColor='#69aaff'; -- 2.39.2