forked from 0x2620/pandora
on find change, only replace right panel if we're not dealing with a context change, after item edit
This commit is contained in:
parent
5351cf498d
commit
ff08c93714
1 changed files with 5 additions and 1 deletions
|
@ -58,7 +58,11 @@ pandora.ui.mainPanel = function() {
|
|||
}
|
||||
});
|
||||
} else {
|
||||
that.replaceElement(1, pandora.$ui.rightPanel = pandora.ui.rightPanel());
|
||||
if (pandora.stayInItemView) {
|
||||
pandora.stayInItemView = false;
|
||||
} else {
|
||||
that.replaceElement(1, pandora.$ui.rightPanel = pandora.ui.rightPanel());
|
||||
}
|
||||
}
|
||||
},
|
||||
pandora_item: function(data) {
|
||||
|
|
Loading…
Reference in a new issue