dat.gui/elements/controller-function/controller-function.js
2014-09-03 21:14:51 -07:00

13 lines
178 B
JavaScript

/* globals Gui, Polymer */
'use strict';
Gui.register('controller-function', function(value) {
return typeof value == 'function';
});
Polymer('controller-function', {
});