diff options
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/flag/list.html.tmpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/template/en/default/flag/list.html.tmpl b/template/en/default/flag/list.html.tmpl index c93515842..08f8c5547 100644 --- a/template/en/default/flag/list.html.tmpl +++ b/template/en/default/flag/list.html.tmpl @@ -21,6 +21,7 @@ <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) @@ -59,6 +60,9 @@ inputElement.disabled = true; } } + if (stored_onload) { + stored_onload(); + } } window.onload = disableRequesteeFields; // --> |