Messaging-Fenster scrollt automatisch nach oben

This commit is contained in:
kindlm
2025-03-25 15:56:55 +01:00
parent 742ae40d98
commit fae299847e
+15
View File
@@ -175,7 +175,22 @@ function MessagesIFrameSetHTML(val)
}
//Value setzen
if(val!='')
{
editor.contentDocument.execCommand("inserthtml", false, val);
setTimeout(function()
{
scrollToTop();
}, 100);
}
}
function scrollToTop()
{
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
editor = document.getElementById('message-wysiwyg');
editor.contentWindow.scrollTo(0, 0);
}
function MessageIFrameInit()