fix Done button of List dialog if dialog was opened while viewing an item
This commit is contained in:
parent
f3f47494f3
commit
7cffc4dd69
1 changed files with 9 additions and 10 deletions
|
@ -65,8 +65,7 @@ pandora.ui.filterForm = function(list) {
|
|||
that.updateResults = function() {
|
||||
if (list) {
|
||||
Ox.Request.clearCache(list.id);
|
||||
pandora.$ui.list
|
||||
.bindEventOnce({
|
||||
pandora.$ui.list && pandora.$ui.list.bindEventOnce({
|
||||
init: function(data) {
|
||||
pandora.$ui.folderList[
|
||||
pandora.getListData().folder
|
||||
|
@ -74,7 +73,7 @@ pandora.ui.filterForm = function(list) {
|
|||
}
|
||||
})
|
||||
.reloadList();
|
||||
pandora.$ui.filters.forEach(function($filter) {
|
||||
pandora.$ui.filters && pandora.$ui.filters.forEach(function($filter) {
|
||||
$filter.reloadList();
|
||||
});
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue