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

13 lines
178 B
JavaScript
Raw Normal View History

2014-09-04 04:14:36 +00:00
/* globals Gui, Polymer */
'use strict';
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', {
});