From 3cac48e86fca8c532138b0c9389f1ca9fb9cbc73 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Sun, 29 May 2016 22:41:25 +0100 Subject: [PATCH] Fix jshint issue in editableList --- editor/js/ui/editableList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/js/ui/editableList.js b/editor/js/ui/editableList.js index 601df0950..dee5ec068 100644 --- a/editor/js/ui/editableList.js +++ b/editor/js/ui/editableList.js @@ -119,7 +119,7 @@ var currentFullHeight = this.topContainer.height(); var innerHeight = this.uiContainer.height(); var delta = currentFullHeight - innerHeight; - if (this.uiHeight != 0) { + if (this.uiHeight !== 0) { this.uiContainer.height(this.uiHeight-delta); } if (this.options.resize) {