2011-07-29 18:37:11 +00:00
|
|
|
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
2011-11-05 17:04:10 +00:00
|
|
|
'use strict';
|
2011-05-25 19:42:45 +00:00
|
|
|
pandora.ui.sectionSelect = function() {
|
|
|
|
// fixme: duplicated
|
2011-06-19 17:49:25 +00:00
|
|
|
var that = Ox.Select({
|
2011-05-25 19:42:45 +00:00
|
|
|
id: 'sectionSelect',
|
|
|
|
items: [
|
2011-06-06 15:48:11 +00:00
|
|
|
{checked: pandora.user.ui.section == 'items', id: 'items', title: pandora.site.itemName.plural},
|
2011-11-09 09:49:59 +00:00
|
|
|
{checked: pandora.user.ui.section == 'edits', id: 'edits', title: 'Edits', disabled: true},
|
|
|
|
{checked: pandora.user.ui.section == 'texts', id: 'texts', title: 'Texts', disabled: true}
|
2011-05-25 19:42:45 +00:00
|
|
|
]
|
|
|
|
}).css({
|
|
|
|
float: 'left',
|
|
|
|
margin: '4px'
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
|
|
|
|
});
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|