mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
fix JS errors caused by using widget.node instead of widget.getDOMNode()
This commit is contained in:
parent
ba35be1d86
commit
4a17d9e2ac
@ -359,9 +359,9 @@ app.classes.mail = AppJS.extend(
|
|||||||
if (content.is_plain)
|
if (content.is_plain)
|
||||||
{
|
{
|
||||||
// focus
|
// focus
|
||||||
jQuery(plainText.node).focus();
|
jQuery(plainText.getDOMNode()).focus();
|
||||||
// get the cursor to the top of the textarea
|
// get the cursor to the top of the textarea
|
||||||
if (typeof plainText.node.setSelectionRange !='undefined' && !jQuery(plainText.node).is(":hidden")) plainText.node.setSelectionRange(0,0);
|
if (typeof plainText.getDOMNode().setSelectionRange !='undefined' && !jQuery(plainText.getDOMNode()).is(":hidden")) plainText.getDOMNode().setSelectionRange(0,0);
|
||||||
}
|
}
|
||||||
else if(textAreaWidget && textAreaWidget.tinymce)
|
else if(textAreaWidget && textAreaWidget.tinymce)
|
||||||
{
|
{
|
||||||
@ -370,12 +370,12 @@ app.classes.mail = AppJS.extend(
|
|||||||
}
|
}
|
||||||
else if(to)
|
else if(to)
|
||||||
{
|
{
|
||||||
jQuery('input',to.node).focus();
|
jQuery('input',to.getDOMNode()).focus();
|
||||||
// set cursor to the begining of the textarea only for first focus
|
// set cursor to the begining of the textarea only for first focus
|
||||||
if (content.is_plain
|
if (content.is_plain
|
||||||
&& typeof plainText.node.setSelectionRange !='undefined')
|
&& typeof plainText.getDOMNode().setSelectionRange !='undefined')
|
||||||
{
|
{
|
||||||
plainText.node.setSelectionRange(0,0);
|
plainText.getDOMNode().setSelectionRange(0,0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var smime_sign = this.et2.getWidgetById('smime_sign');
|
var smime_sign = this.et2.getWidgetById('smime_sign');
|
||||||
|
Loading…
Reference in New Issue
Block a user