dat.gui/elements/dat-gui-string/dat-gui-string.js
George Michael Brower ca14623507 controller- =
2014-09-09 15:53:30 -04:00

29 lines
357 B
JavaScript

/* globals Gui, Polymer */
Gui.register( 'dat-gui-string', function( value ) {
return typeof value == 'string';
} );
Polymer( 'dat-gui-string', {
click: function( e ) {
this.$.input.select();
},
keydown: function( e ) {
if ( e.keyCode == 13 ) {
this.$.input.blur();
}
}
} );