2017-02-20 16:04:50 -07: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;