From 4b808396f25e231aa51c398cc44c3f8c53bd28a0 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Sat, 25 Oct 2014 10:25:55 +0100 Subject: [PATCH] Missing semicolon --- core/modules/widgets/edit-text.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/widgets/edit-text.js b/core/modules/widgets/edit-text.js index f328feda5..4a9d669b2 100644 --- a/core/modules/widgets/edit-text.js +++ b/core/modules/widgets/edit-text.js @@ -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;