Mercurial > p > roundup > code
diff templates/classic/html/help_controls.js @ 2361:9cdc49488fe6
define the "undefined" var manually
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sun, 23 May 2004 23:00:49 +0000 |
| parents | c77483d2cda4 |
| children | 10a49678ebf2 |
line wrap: on
line diff
--- a/templates/classic/html/help_controls.js Sun May 23 13:05:43 2004 +0000 +++ b/templates/classic/html/help_controls.js Sun May 23 23:00:49 2004 +0000 @@ -1,7 +1,9 @@ // initial values for either Nosy, Superseder, Topic and Waiting On, // depending on which has called +original_field = window.opener.document.itemSynopsis[field].value; -original_field = window.opener.document.itemSynopsis[field].value; +// Some browsers (ok, IE) don't define the "undefined" variable. +undefined = document.geez_IE_is_really_friggin_annoying; function trim(value) { var temp = value;
