Remove forced colon in label, so we can add it optionally through CSS instead.

This commit is contained in:
Jürg Lehni 2014-09-29 15:46:29 +02:00
parent 214ac10d57
commit 3cb84842ff

View file

@ -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() {