update entities dialog

This commit is contained in:
rolux 2014-12-17 16:18:22 +00:00
parent 0b064f7722
commit 7741c86079

View file

@ -7,11 +7,11 @@ pandora.ui.entitiesDialog = function(options) {
var dialogHeight = Math.round((window.innerHeight - 48) * 0.9), var dialogHeight = Math.round((window.innerHeight - 48) * 0.9),
dialogWidth = Math.round(window.innerWidth * 0.9), dialogWidth = Math.round(window.innerWidth * 0.9),
selected = [],
ui = pandora.user.ui, ui = pandora.user.ui,
type = ui.entitiesType || ( type = ui.entitiesType || (
pandora.site.entities.length ? pandora.site.entities[0].id : '' pandora.site.entities.length ? pandora.site.entities[0].id : ''
), ),
selected = ui.entitiesSelection[type] || [];
$entitiesSelect = Ox.Select({ $entitiesSelect = Ox.Select({
items: pandora.site.entities.map(function(type) { items: pandora.site.entities.map(function(type) {
@ -89,6 +89,7 @@ pandora.ui.entitiesDialog = function(options) {
}, },
sort: [{key: 'name', operator: '+'}], sort: [{key: 'name', operator: '+'}],
scrollbarVisible: true, scrollbarVisible: true,
selected: selected,
unique: 'id', unique: 'id',
width: 256 - Ox.SCROLLBAR_SIZE width: 256 - Ox.SCROLLBAR_SIZE
}) })