forked from 0x2620/pandora
22 lines
600 B
JavaScript
22 lines
600 B
JavaScript
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
|
'use strict';
|
|
pandora.ui.sectionSelect = function() {
|
|
// fixme: duplicated
|
|
var that = Ox.Select({
|
|
id: 'sectionSelect',
|
|
items: [
|
|
{id: 'items', title: pandora.site.itemName.plural},
|
|
{id: 'edits', title: 'Edits', disabled: true},
|
|
{id: 'texts', title: 'Texts', disabled: true}
|
|
],
|
|
value: pandora.user.ui.section
|
|
}).css({
|
|
float: 'left',
|
|
margin: '4px'
|
|
})
|
|
.bindEvent({
|
|
|
|
});
|
|
return that;
|
|
};
|
|
|