mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -05:00
Remove debug logging.
This commit is contained in:
parent
3cb84842ff
commit
24a80dca27
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue