1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 17:53:15 +00:00

Missing semicolon

This commit is contained in:
Jermolene 2014-10-25 10:25:55 +01:00
parent 4a17212576
commit 4b808396f2

View File

@ -138,7 +138,7 @@ EditTextWidget.prototype.execute = function() {
this.editPlaceholder = this.getAttribute("placeholder");
this.editSize = this.getAttribute("size");
this.editAutoHeight = this.getAttribute("autoHeight","yes") === "yes";
this.editMinHeight = this.getAttribute("minHeight",DEFAULT_MIN_TEXT_AREA_HEIGHT)
this.editMinHeight = this.getAttribute("minHeight",DEFAULT_MIN_TEXT_AREA_HEIGHT);
this.editFocusPopup = this.getAttribute("focusPopup");
// Get the editor element tag and type
var tag,type;