dat.gui/controller.boolean.js
2011-01-24 12:38:52 -07:00

9 lines
344 B
JavaScript

var BooleanController = function() {
this.type = "boolean";
Controller.apply(this, arguments);
var input = document.createElement('input');
input.setAttribute('type', 'checkbox');
this.domElement.appendChild(input);
};
BooleanController.prototype = new Controller();
BooleanController.prototype.constructor = BooleanController;