dat.gui/elements/controller-boolean/controller-boolean.js
2014-09-07 18:27:32 -07:00

23 lines
251 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;
}
});