add trim to avoid display null as string

This commit is contained in:
vitalets 2013-06-23 16:25:45 +04:00
parent 3c49361492
commit b29686ccb8

@ -52,7 +52,7 @@ To create your own input you can inherit from this class.
@param {DOMElement} element
**/
value2html: function(value, element) {
$(element).text(value);
$(element).text($.trim(value));
},
/**