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

21 lines
259 B
JavaScript
Raw Permalink Normal View History

2014-09-04 04:14:36 +00:00
/* globals Gui, Polymer */
2014-09-08 01:27:32 +00:00
2014-09-04 04:14:36 +00:00
2014-09-09 19:53:30 +00:00
Gui.register( 'dat-gui-boolean', function( value ) {
2014-08-27 00:01:15 +00:00
2014-09-08 01:31:51 +00:00
return typeof value == 'boolean';
2014-09-08 01:31:51 +00:00
} );
2014-09-09 19:53:30 +00:00
Polymer( 'dat-gui-boolean', {
ready: function() {},
2014-08-27 00:01:15 +00:00
2014-09-08 01:31:51 +00:00
toggle: function() {
2014-08-27 00:01:15 +00:00
2014-09-08 01:31:51 +00:00
this.value = !this.value;
2014-08-27 00:01:15 +00:00
2014-09-08 01:31:51 +00:00
}
2014-08-27 00:01:15 +00:00
2014-09-08 01:38:29 +00:00
} );