UNPKG

marko-widgets

Version:

Module to support binding of behavior to rendered UI components rendered on the server or client

15 lines (11 loc) 234 B
function Widget(config) { this.label = config.label; this.name = 'app-bar'; var $el = this.$(); this.appendHtml = function(html) { $el.append(html); }; } Widget.prototype = { }; exports.Widget = Widget;