1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-06 02:37:14 +00:00

Merge ef0f065954d569ccc7430bbc9f66af3b2a7a4c94 into c3695765ad8b3e46b4dcc89496a2daa331215a81

This commit is contained in:
Simon Huber 2025-03-10 19:03:25 +09:00 committed by GitHub
commit f28a166820
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 0 deletions

View File

@ -81,6 +81,9 @@ function FramedEngine(options) {
if(this.widget.isDisabled === "yes") {
this.domNode.setAttribute("disabled",true);
}
if(this.widget.editDirection) {
this.domNode.setAttribute("dir",this.widget.editDirection);
}
// Copy the styles from the dummy textarea
this.copyStyles();
// Add event listeners

View File

@ -58,6 +58,9 @@ function SimpleEngine(options) {
if(this.widget.isDisabled === "yes") {
this.domNode.setAttribute("disabled",true);
}
if(this.widget.editDirection) {
this.domNode.setAttribute("dir",this.widget.editDirection);
}
// Add an input event handler
$tw.utils.addEventListeners(this.domNode,[
{name: "focus", handlerObject: this, handlerMethod: "handleFocusEvent"},

View File

@ -187,6 +187,7 @@ function editTextWidgetFactory(toolbarEngine,nonToolbarEngine) {
this.editInputActions = this.getAttribute("inputActions");
this.editRefreshTitle = this.getAttribute("refreshTitle");
this.editAutoComplete = this.getAttribute("autocomplete");
this.editDirection = this.document.getElementsByTagName("html")[0].getAttribute("dir") || "ltr";
this.isDisabled = this.getAttribute("disabled","no");
this.isFileDropEnabled = this.getAttribute("fileDrop","no") === "yes";
// Get the default editor element tag and type