mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
26 lines
301 B
JavaScript
26 lines
301 B
JavaScript
Gui.register( 'controller-boolean', function( value ) {
|
|
|
|
return typeof value == 'boolean';
|
|
|
|
} );
|
|
|
|
Polymer( 'controller-boolean', {
|
|
|
|
ready: function() {
|
|
|
|
|
|
},
|
|
|
|
toggle: function() {
|
|
|
|
console.log( 'hi' );
|
|
this.value = !this.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
});
|