mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-21 03:51:11 -08:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
df3d346792
1 changed files with 4 additions and 2 deletions
|
|
@ -73,8 +73,10 @@ EditTextWidget.prototype.render = function(parent,nextSibling) {
|
|||
this.fixHeight();
|
||||
// Focus field
|
||||
if(this.editFocus === "true") {
|
||||
domNode.focus();
|
||||
domNode.select();
|
||||
if(domNode.focus && domNode.select) {
|
||||
domNode.focus();
|
||||
domNode.select();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue