dat.gui/elements/controller-boolean/controller-boolean.js

23 lines
279 B
JavaScript
Raw Normal View History

2014-08-23 07:05:22 +00:00
Gui.register( 'controller-boolean', function( value ) {
return typeof value == 'boolean';
} );
Polymer( 'controller-boolean', {
ready: function() {
},
change: function() {
this.value = this.$.input.checked;
}
});