mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
13 lines
186 B
JavaScript
13 lines
186 B
JavaScript
/* globals Gui, Polymer */
|
|
'use strict';
|
|
|
|
Gui.register( 'controller-function', function( value ) {
|
|
|
|
return typeof value == 'function';
|
|
|
|
} );
|
|
|
|
Polymer( 'controller-function', {
|
|
|
|
} );
|