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