minor changes to ExamplePage

This commit is contained in:
rolux 2012-04-05 17:32:19 +02:00
parent 5c727a1687
commit 08a64d8695

View file

@ -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'})