mirror of
https://github.com/dataarts/dat.gui.git
synced 2025-01-02 03:14:20 +00:00
13 lines
178 B
JavaScript
13 lines
178 B
JavaScript
/* globals Gui, Polymer */
|
|
'use strict';
|
|
|
|
Gui.register('controller-function', function(value) {
|
|
|
|
return typeof value == 'function';
|
|
|
|
});
|
|
|
|
Polymer('controller-function', {
|
|
|
|
});
|