mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
27 lines
309 B
JavaScript
27 lines
309 B
JavaScript
/* globals Gui, Polymer */
|
|
|
|
|
|
Gui.register('controller-string', function(value) {
|
|
|
|
return typeof value == 'string';
|
|
|
|
});
|
|
|
|
Polymer('controller-string', {
|
|
|
|
click: function(e) {
|
|
|
|
this.$.input.select();
|
|
|
|
},
|
|
|
|
keydown: function(e) {
|
|
|
|
if (e.keyCode == 13) {
|
|
this.$.input.blur();
|
|
}
|
|
|
|
}
|
|
|
|
});
|