diff options
author | lpsolit%gmail.com <> | 2006-07-25 06:22:53 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-07-25 06:22:53 +0000 |
commit | 2904ac3261ff9bb59e29b74d55d4ada294986ffe (patch) | |
tree | c3c5b3a99f23f76502eac1e652044a550ba19371 /template/en/default/flag | |
parent | bea873a66d06670af744b29d9e8d357ae3b5ceed (diff) | |
download | bugs-2904ac3261ff9bb59e29b74d55d4ada294986ffe.tar bugs-2904ac3261ff9bb59e29b74d55d4ada294986ffe.tar.gz bugs-2904ac3261ff9bb59e29b74d55d4ada294986ffe.tar.bz2 bugs-2904ac3261ff9bb59e29b74d55d4ada294986ffe.tar.xz bugs-2904ac3261ff9bb59e29b74d55d4ada294986ffe.zip |
Bug 174039: Set flags on bug entry - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap r=myk a=myk
Diffstat (limited to 'template/en/default/flag')
-rw-r--r-- | template/en/default/flag/list.html.tmpl | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/template/en/default/flag/list.html.tmpl b/template/en/default/flag/list.html.tmpl index 7a92f1277..1cf710250 100644 --- a/template/en/default/flag/list.html.tmpl +++ b/template/en/default/flag/list.html.tmpl @@ -21,10 +21,9 @@ <script type="text/javascript"> <!-- - var stored_onload = window.onload; // Enables or disables a requestee field depending on whether or not // the user is requesting the corresponding flag. - function toggleRequesteeField(flagField) + function toggleRequesteeField(flagField, no_focus) { // Convert the ID of the flag field into the ID of its corresponding // requestee field and then use the ID to get the field. @@ -36,7 +35,7 @@ // of the flag field. if (flagField.value == "?") { requesteeField.disabled = false; - requesteeField.focus(); + if (!no_focus) requesteeField.focus(); } else requesteeField.disabled = true; } @@ -60,9 +59,6 @@ inputElement.disabled = true; } } - if (stored_onload) { - stored_onload(); - } } window.onload = disableRequesteeFields; // --> |