mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
19 lines
239 B
JavaScript
19 lines
239 B
JavaScript
/* globals Gui, Polymer */
|
|
|
|
|
|
Gui.register( 'dat-gui-function', function( value ) {
|
|
|
|
return typeof value == 'function';
|
|
|
|
} );
|
|
|
|
|
|
|
|
Polymer( 'dat-gui-function', {
|
|
|
|
tap: function() {
|
|
this.value.apply( this.object );
|
|
}
|
|
|
|
} );
|