diff --git a/source/Ox.UI/js/Code/Ox.ExamplePage.js b/source/Ox.UI/js/Code/Ox.ExamplePage.js index 23dd776e..0e02b358 100644 --- a/source/Ox.UI/js/Code/Ox.ExamplePage.js +++ b/source/Ox.UI/js/Code/Ox.ExamplePage.js @@ -16,7 +16,8 @@ Ox.ExamplePage = function(options, self) { self.$toolbar = Ox.Bar({size: 24}); self.$title = Ox.Label({ - title: self.options.title + style: 'square', + title: 'Examples: ' + self.options.title }) .css({float: 'left', margin: '4px'}) .appendTo(self.$toolbar) @@ -51,7 +52,7 @@ Ox.ExamplePage = function(options, self) { selectable: true, value: self.options.selected }) - .css({float: 'right', margin: '4px 2px 4px 4px'}) + .css({float: 'right', margin: '4px 2px 4px 2px'}) .bindEvent({ change: function(data) { self.options.selected = data.value; @@ -72,8 +73,10 @@ Ox.ExamplePage = function(options, self) { items: self.options.keywords.map(function(keyword) { return {id: keyword, title: keyword}; }), + //title: 'Documentation', + //width: 128 title: 'select', - tooltip: 'Documentation', + tooltip: 'References', type: 'image' }) .css({float: 'right', margin: '4px 2px 4px 2px'})