mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -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',
|
_class: 'Component',
|
||||||
_events: [ 'onChange', 'onClick' ],
|
_events: [ 'onChange', 'onClick' ],
|
||||||
|
|
||||||
|
// DOCS: All!
|
||||||
|
|
||||||
// Meta-information, by type. This is stored in _meta on the components.
|
// Meta-information, by type. This is stored in _meta on the components.
|
||||||
_types: {
|
_types: {
|
||||||
'boolean': {
|
'boolean': {
|
||||||
|
@ -181,7 +183,6 @@ var Component = Base.extend(Callback, /** @lends Component# */{
|
||||||
setValue = meta.setValue;
|
setValue = meta.setValue;
|
||||||
if (setValue)
|
if (setValue)
|
||||||
value = setValue.call(this, value);
|
value = setValue.call(this, value);
|
||||||
console.log('setValue', this.name, key, value);
|
|
||||||
DomElement.set(this._input, key, value);
|
DomElement.set(this._input, key, value);
|
||||||
// Read back and convert from input again, to make sure we're in sync
|
// Read back and convert from input again, to make sure we're in sync
|
||||||
value = DomElement.get(this._input, key);
|
value = DomElement.get(this._input, key);
|
||||||
|
|
Loading…
Reference in a new issue