Remove debug logging.

This commit is contained in:
Jürg Lehni 2014-09-29 16:12:50 +02:00
parent 3cb84842ff
commit 24a80dca27

View file

@ -18,6 +18,8 @@ var Component = Base.extend(Callback, /** @lends Component# */{
_class: 'Component',
_events: [ 'onChange', 'onClick' ],
// DOCS: All!
// Meta-information, by type. This is stored in _meta on the components.
_types: {
'boolean': {
@ -181,7 +183,6 @@ var Component = Base.extend(Callback, /** @lends Component# */{
setValue = meta.setValue;
if (setValue)
value = setValue.call(this, value);
console.log('setValue', this.name, key, value);
DomElement.set(this._input, key, value);
// Read back and convert from input again, to make sure we're in sync
value = DomElement.get(this._input, key);