switch back to list when using find in item view
This commit is contained in:
parent
5a06948b97
commit
38f37f3a9f
3 changed files with 6 additions and 4 deletions
|
@ -53,7 +53,7 @@ pandora.UI = (function() {
|
|||
if (pandora.$ui.appPanel) {
|
||||
// if we're not on page load,
|
||||
// switch from item view to list view
|
||||
add['item'] = '';
|
||||
args['item'] = '';
|
||||
}
|
||||
if (!pandora.user.ui.lists[list]) {
|
||||
add['lists.' + that.encode(list)] = {};
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
||||
pandora.ui.helpDialog = function() {
|
||||
var content = Ox.Element(),
|
||||
var content = Ox.Element().css({margin: '16px'}),
|
||||
that = Ox.Dialog({
|
||||
buttons: [
|
||||
Ox.Button({
|
||||
|
@ -27,8 +27,9 @@ pandora.ui.helpDialog = function() {
|
|||
title: 'Help',
|
||||
width: Math.round(window.innerWidth * 0.75)
|
||||
});
|
||||
pandora.api.getPage({name: 'help'}, function(response) {
|
||||
content.html(response.data.body);
|
||||
pandora.api.getPage({name: 'help'}, function(result) {
|
||||
//content.html(response.data.body);
|
||||
content.html('Help is coming soon...')
|
||||
});
|
||||
return that;
|
||||
|
||||
|
|
|
@ -41,6 +41,7 @@ pandora.ui.mainPanel = function() {
|
|||
}
|
||||
},
|
||||
pandora_item: function(data) {
|
||||
Ox.print('PANDORA_ITEM', data.value, data.previousValue)
|
||||
if (!data.value || !data.previousValue) {
|
||||
that.replaceElement(1, pandora.$ui.rightPanel = pandora.ui.rightPanel());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue