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

21 lines
256 B
JavaScript
Raw Normal View History

2014-08-27 00:01:15 +00:00
Gui.register( 'controller-boolean', function( value ) {
return typeof value == 'boolean';
} );
Polymer( 'controller-boolean', {
ready: function() {
},
2014-09-02 17:13:35 +00:00
toggle: function() {
2014-08-27 00:01:15 +00:00
2014-09-02 17:13:35 +00:00
this.value = !this.value;
2014-08-27 00:01:15 +00:00
}
});