mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 18:17:20 +00:00
Fix bug where edit widget input-tag is empty (#4088)
This commit is contained in:
parent
e669ec098f
commit
0a2d532a7b
@ -193,7 +193,7 @@ function editTextWidgetFactory(toolbarEngine,nonToolbarEngine) {
|
|||||||
type = type || "text";
|
type = type || "text";
|
||||||
}
|
}
|
||||||
// Get the rest of our parameters
|
// Get the rest of our parameters
|
||||||
this.editTag = this.getAttribute("tag",tag);
|
this.editTag = this.getAttribute("tag",tag) || "input";
|
||||||
this.editType = this.getAttribute("type",type);
|
this.editType = this.getAttribute("type",type);
|
||||||
// Make the child widgets
|
// Make the child widgets
|
||||||
this.makeChildWidgets();
|
this.makeChildWidgets();
|
||||||
|
Loading…
Reference in New Issue
Block a user