From 3cb84842ffe5acb8498492b1168fb277ee142063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 29 Sep 2014 15:46:29 +0200 Subject: [PATCH] Remove forced colon in label, so we can add it optionally through CSS instead. --- src/ui/Component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/Component.js b/src/ui/Component.js index 12598313..3a8dadca 100644 --- a/src/ui/Component.js +++ b/src/ui/Component.js @@ -143,7 +143,7 @@ var Component = Base.extend(Callback, /** @lends Component# */{ DomElement.set(this._labelNode = this._labelNode || this._labelCell.appendChild(DomElement.create('label', { 'for': 'palettejs-input-' + this._name })), - 'text', label + ':'); + 'text', label); }, getSuffix: function() {