1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix jshint issue in editableList

This commit is contained in:
Nick O'Leary 2016-05-29 22:41:25 +01:00
parent 64722da4a7
commit 3cac48e86f

View File

@ -119,7 +119,7 @@
var currentFullHeight = this.topContainer.height(); var currentFullHeight = this.topContainer.height();
var innerHeight = this.uiContainer.height(); var innerHeight = this.uiContainer.height();
var delta = currentFullHeight - innerHeight; var delta = currentFullHeight - innerHeight;
if (this.uiHeight != 0) { if (this.uiHeight !== 0) {
this.uiContainer.height(this.uiHeight-delta); this.uiContainer.height(this.uiHeight-delta);
} }
if (this.options.resize) { if (this.options.resize) {