dat.gui/elements/controller-boolean/controller-boolean.js
George Michael Brower b2d990338b styl
2014-09-02 20:44:37 -04:00

21 lines
256 B
JavaScript

Gui.register( 'controller-boolean', function( value ) {
return typeof value == 'boolean';
} );
Polymer( 'controller-boolean', {
ready: function() {
},
toggle: function() {
this.value = !this.value;
}
});