2011-11-05 17:04:10 +00:00
|
|
|
'use strict';
|
2018-06-19 06:33:26 +00:00
|
|
|
|
2013-07-15 11:39:23 +00:00
|
|
|
pandora.ui.sectionButtons = function(section) {
|
2011-06-19 17:49:25 +00:00
|
|
|
var that = Ox.ButtonGroup({
|
2011-05-25 19:42:45 +00:00
|
|
|
buttons: [
|
2013-05-27 20:06:56 +00:00
|
|
|
{id: 'items', title: Ox._(pandora.site.itemName.plural)},
|
2014-03-05 13:39:25 +00:00
|
|
|
{id: 'edits', title: Ox._('Edits')},
|
2016-10-04 22:00:03 +00:00
|
|
|
{id: 'documents', title: Ox._('Documents')}
|
2011-05-25 19:42:45 +00:00
|
|
|
],
|
|
|
|
id: 'sectionButtons',
|
2011-12-22 07:27:48 +00:00
|
|
|
selectable: true,
|
2013-07-15 11:39:23 +00:00
|
|
|
value: section || pandora.user.ui.section
|
2011-05-25 19:42:45 +00:00
|
|
|
}).css({
|
|
|
|
float: 'left',
|
|
|
|
margin: '4px'
|
|
|
|
})
|
|
|
|
.bindEvent({
|
2011-09-17 17:40:15 +00:00
|
|
|
change: function(data) {
|
2011-12-21 15:34:28 +00:00
|
|
|
var section = data.value;
|
2013-02-16 01:20:40 +00:00
|
|
|
pandora.UI.set({section: section});
|
2011-05-25 19:42:45 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|