5 ui.Toolbar = ui.AbstractWidget.extend({
11 init: function(parent) {
13 this.el = $.joey(this._main_template());
15 _main_template: function() {
16 return { tag: "DIV", cls: "uiToolbar", children: [
17 { tag: "DIV", cls: "pull-left", children: [
18 { tag: "H2", text: this.config.label }
19 ].concat(this.config.left) },
20 { tag: "DIV", cls: "pull-right", children: this.config.right }
25 })( this.jQuery, this.app );