forked from 0x2620/pandora
25 lines
750 B
JavaScript
25 lines
750 B
JavaScript
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
|
'use strict';
|
|
pandora.ui.sectionButtons = function(section) {
|
|
var that = Ox.ButtonGroup({
|
|
buttons: [
|
|
{id: 'items', title: Ox._(pandora.site.itemName.plural)},
|
|
{id: 'edits', title: Ox._('Edits')},
|
|
{id: 'texts', title: Ox._('Texts')}
|
|
],
|
|
id: 'sectionButtons',
|
|
selectable: true,
|
|
value: section || pandora.user.ui.section
|
|
}).css({
|
|
float: 'left',
|
|
margin: '4px'
|
|
})
|
|
.bindEvent({
|
|
change: function(data) {
|
|
var section = data.value;
|
|
pandora.UI.set({section: section});
|
|
}
|
|
});
|
|
return that;
|
|
};
|
|
|