diff options
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/create/create-guided.html.tmpl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/template/en/default/bug/create/create-guided.html.tmpl b/template/en/default/bug/create/create-guided.html.tmpl index 4f2751311..a716ddca6 100644 --- a/template/en/default/bug/create/create-guided.html.tmpl +++ b/template/en/default/bug/create/create-guided.html.tmpl @@ -253,12 +253,15 @@ function PutDescription() { </select> </td> <td valign="top" width="100%"> - [% IF cgi.user_agent("Mozilla/5") %] <div id="description" style="color: green; margin-left: 10px; height: 5em; overflow: auto;"> - Select a component to see its description here. + <script type="text/javascript" language="JavaScript"> + if ((document.getElementById) && (document.body.innerHTML)) { + document.write("\ + Select a component to see its description here."); + } + </script> </div> - [% END %] </td> </tr> </table> |