dat.gui/elements/controller-boolean/controller-boolean.js
George Michael Brower a81d61ba1b merge
2014-09-07 21:38:29 -04:00

23 lines
271 B
JavaScript

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