minor changes for filter dialog
This commit is contained in:
parent
16cf98cad6
commit
c01bb87c13
4 changed files with 10 additions and 5 deletions
|
|
@ -1,8 +1,8 @@
|
|||
// vim: et:ts=4:sw=4:sts=4:ft=js
|
||||
pandora.ui.filter = function() {
|
||||
var that = new Ox.Filter({
|
||||
findKeys: $.map(app.site.itemKeys, function(key) {
|
||||
return {
|
||||
findKeys: Ox.map(app.site.itemKeys, function(key) {
|
||||
return key.id == 'all' ? null : {
|
||||
autocomplete: key.autocomplete,
|
||||
autocompleteSortKey: key.autocompleteSortKey,
|
||||
format: key.format,
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ pandora.ui.filterDialog = function() {
|
|||
height: 264,
|
||||
keys: {enter: 'save', escape: 'cancel'},
|
||||
title: 'Advanced Find',
|
||||
width: 616 + Ox.UI.SCROLLBAR_SIZE
|
||||
width: 648 + Ox.UI.SCROLLBAR_SIZE
|
||||
});
|
||||
return that;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue