2016-11-02 16:12:13 -06:00

9 lines
182 B
JavaScript

function Widget(config) {
this.name = 'app-nested-widget-bind/foo';
window.addWidget('app-nested-widget-bind/foo', this);
}
Widget.prototype = {
};
exports.Widget = Widget;