2016-12-16 11:39:53 -07:00

15 lines
236 B
JavaScript

function Widget(config) {
this.label = config.label;
this.name = 'app-bar';
var el = this.el;
this.appendHtml = function(html) {
el.innerHTML += html;
};
}
Widget.prototype = {
};
exports.Widget = Widget;