From 994c06c6a43f9ca74468d185af39750a16278353 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 10 Nov 2005 04:08:57 +0000 Subject: [PATCH] * Removed arbitrary upper bound in message select array, after realizing that JavaScript arrays don't need to have their size declared. --- webcit/ChangeLog | 4 ++++ webcit/static/wclib.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index c1511832d..59ac15b5b 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,5 +1,9 @@ $Id$ +Wed Nov 9 23:07:44 EST 2005 ajc +* Removed arbitrary upper bound in message select array, after realizing that + JavaScript arrays don't need to have their size declared. + Tue Nov 8 23:50:01 EST 2005 ajc * Mailbox view: selected messages are now draggable!! (Now we just need to implement a place to drop them.) diff --git a/webcit/static/wclib.js b/webcit/static/wclib.js index 23ef4f8dd..3b9574006 100644 --- a/webcit/static/wclib.js +++ b/webcit/static/wclib.js @@ -55,7 +55,7 @@ function activate_entmsg_autocompleters() { // Static variables for mailbox view... // var CtdlNumMsgsSelected = 0; -var CtdlMsgsSelected = new Array(65536); // arbitrary +var CtdlMsgsSelected = new Array(); // This gets called when you single click on a message in the mailbox view. // We know that the element id of the table row will be the letter 'm' plus the message number. -- 2.39.2