diff --git a/webinterface.py b/webinterface.py index f7899062e..17dabe53f 100644 --- a/webinterface.py +++ b/webinterface.py @@ -1005,6 +1005,7 @@ def htmlNewPost(translate: {},baseDir: str, \ if not reportUrl: newPostForm+='' + newPostForm=newPostForm.replace('','') newPostForm+=htmlFooter() return newPostForm @@ -1385,8 +1386,8 @@ def cursorToEndOfMessageScript() -> str: ' var theVal = replyTextArea.value;\n' \ ' replyTextArea.value = theVal;\n' \ '}\n' \ - 'window.onload = function() {\n' \ - " document.getElementById('message').focus();\n" \ + 'function focusOnMessage() {\n' \ + " document.getElementById('message').focus()\n" \ '}\n' return script