dat.gui/elements/controller-function/controller-function.js

13 lines
165 B
JavaScript
Raw Normal View History

2014-09-04 04:14:36 +00:00
/* globals Gui, Polymer */
2014-09-08 01:27:32 +00:00
2014-09-04 04:14:36 +00:00
Gui.register('controller-function', function(value) {
2014-08-27 00:01:15 +00:00
return typeof value == 'function';
2014-08-27 00:01:15 +00:00
});
2014-08-27 00:01:15 +00:00
Polymer('controller-function', {
});