mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
fe172c75fb
Moved easing from margin-top to height. It's now showing an ugly scrollbar jump. Hmm...
34 lines
711 B
JavaScript
34 lines
711 B
JavaScript
var StringController = function() {
|
|
|
|
this.type = "string";
|
|
|
|
var _this = this;
|
|
|
|
Controller.apply(this, arguments);
|
|
|
|
var input = document.createElement('input');
|
|
|
|
var initialValue = this.getValue();
|
|
|
|
input.setAttribute('value', initialValue);
|
|
input.setAttribute('spellcheck', 'false');
|
|
|
|
this.domElement.addEventListener('mouseup', function() {
|
|
input.focus();
|
|
input.select();
|
|
}, false);
|
|
|
|
input.addEventListener('keyup', function() {
|
|
_this.setValue(input.value);
|
|
}, false);
|
|
|
|
this.domElement.appendChild(input);
|
|
|
|
this.updateValue = function(val) {
|
|
input.setAttribute('value', val);
|
|
}
|
|
|
|
};
|
|
StringController.prototype = new Controller();
|
|
StringController.prototype.constructor = StringController;
|