summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/toolbar/toolbar.js
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/toolbar/toolbar.js')
-rw-r--r--sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/toolbar/toolbar.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/toolbar/toolbar.js b/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/toolbar/toolbar.js
new file mode 100644
index 000000000..d64eefe32
--- /dev/null
+++ b/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/toolbar/toolbar.js
@@ -0,0 +1,25 @@
+(function( $, app ) {
+
+ var ui = app.ns("ui");
+
+ ui.Toolbar = ui.AbstractWidget.extend({
+ defaults: {
+ label: "",
+ left: [],
+ right: []
+ },
+ init: function(parent) {
+ this._super();
+ this.el = $.joey(this._main_template());
+ },
+ _main_template: function() {
+ return { tag: "DIV", cls: "uiToolbar", children: [
+ { tag: "DIV", cls: "pull-left", children: [
+ { tag: "H2", text: this.config.label }
+ ].concat(this.config.left) },
+ { tag: "DIV", cls: "pull-right", children: this.config.right }
+ ]};
+ }
+ });
+
+})( this.jQuery, this.app );