forked from 0x2620/pandora
fix home screen, fixes #1901
This commit is contained in:
parent
2eb48fff09
commit
18fdba8654
4 changed files with 32 additions and 16 deletions
|
@ -119,8 +119,10 @@ pandora.ui.home = function() {
|
|||
var folder = pandora.getListData().folder,
|
||||
value = $findInput.value();
|
||||
folder && pandora.$ui.folderList[folder].options({selected: []});
|
||||
pandora.$ui.findSelect.value('*');
|
||||
pandora.$ui.findInput.value(value);
|
||||
if (pandora.user.ui.section == 'items') {
|
||||
pandora.$ui.findSelect.value('*');
|
||||
pandora.$ui.findInput.value(value);
|
||||
}
|
||||
that.fadeOutScreen();
|
||||
pandora.UI.set({
|
||||
page: '',
|
||||
|
@ -129,7 +131,8 @@ pandora.ui.home = function() {
|
|||
? []
|
||||
: [{key: '*', value: value, operator: '='}],
|
||||
operator: '&'
|
||||
}
|
||||
},
|
||||
section: 'items'
|
||||
});
|
||||
}
|
||||
})
|
||||
|
@ -151,7 +154,8 @@ pandora.ui.home = function() {
|
|||
.bindEvent({
|
||||
click: function() {
|
||||
pandora.UI.set({
|
||||
page: pandora.user.ui.page == 'home' ? '' : pandora.user.ui.page
|
||||
page: pandora.user.ui.page == 'home' ? '' : pandora.user.ui.page,
|
||||
section: 'items'
|
||||
});
|
||||
that.fadeOutScreen();
|
||||
}
|
||||
|
|
|
@ -158,8 +158,10 @@ pandora.ui.home = function() {
|
|||
var folder = pandora.getListData().folder,
|
||||
value = $findInput.value();
|
||||
folder && pandora.$ui.folderList[folder].options({selected: []});
|
||||
pandora.$ui.findSelect.value('*');
|
||||
pandora.$ui.findInput.value(value);
|
||||
if (pandora.user.ui.section == 'items') {
|
||||
pandora.$ui.findSelect.value('*');
|
||||
pandora.$ui.findInput.value(value);
|
||||
}
|
||||
that.fadeOutScreen();
|
||||
pandora.UI.set({
|
||||
page: '',
|
||||
|
@ -168,7 +170,8 @@ pandora.ui.home = function() {
|
|||
? []
|
||||
: [{key: '*', value: value, operator: '='}],
|
||||
operator: '&'
|
||||
}
|
||||
},
|
||||
section: 'items'
|
||||
});
|
||||
}
|
||||
})
|
||||
|
@ -190,7 +193,8 @@ pandora.ui.home = function() {
|
|||
.bindEvent({
|
||||
click: function() {
|
||||
pandora.UI.set({
|
||||
page: pandora.user.ui.page == 'home' ? '' : pandora.user.ui.page
|
||||
page: pandora.user.ui.page == 'home' ? '' : pandora.user.ui.page,
|
||||
section: 'items'
|
||||
});
|
||||
that.fadeOutScreen();
|
||||
}
|
||||
|
|
|
@ -110,8 +110,10 @@ pandora.ui.home = function() {
|
|||
var folder = pandora.getListData().folder,
|
||||
value = $findInput.value();
|
||||
folder && pandora.$ui.folderList[folder].options({selected: []});
|
||||
pandora.$ui.findSelect.value('*');
|
||||
pandora.$ui.findInput.value(value);
|
||||
if (pandora.user.ui.section == 'items') {
|
||||
pandora.$ui.findSelect.value('*');
|
||||
pandora.$ui.findInput.value(value);
|
||||
}
|
||||
that.fadeOutScreen();
|
||||
pandora.UI.set({
|
||||
page: '',
|
||||
|
@ -120,7 +122,8 @@ pandora.ui.home = function() {
|
|||
? []
|
||||
: [{key: '*', value: value, operator: '='}],
|
||||
operator: '&'
|
||||
}
|
||||
},
|
||||
section: 'items'
|
||||
});
|
||||
}
|
||||
})
|
||||
|
@ -141,7 +144,8 @@ pandora.ui.home = function() {
|
|||
.bindEvent({
|
||||
click: function() {
|
||||
pandora.UI.set({
|
||||
page: pandora.user.ui.page == 'home' ? '' : pandora.user.ui.page
|
||||
page: pandora.user.ui.page == 'home' ? '' : pandora.user.ui.page,
|
||||
section: 'items'
|
||||
});
|
||||
that.fadeOutScreen();
|
||||
}
|
||||
|
|
|
@ -130,8 +130,10 @@ pandora.ui.home = function() {
|
|||
var folder = pandora.getListData().folder,
|
||||
value = $findInput.value();
|
||||
folder && pandora.$ui.folderList[folder].options({selected: []});
|
||||
pandora.$ui.findSelect.value('*');
|
||||
pandora.$ui.findInput.value(value);
|
||||
if (pandora.user.ui.section == 'items') {
|
||||
pandora.$ui.findSelect.value('*');
|
||||
pandora.$ui.findInput.value(value);
|
||||
}
|
||||
that.fadeOutScreen();
|
||||
pandora.UI.set({
|
||||
page: '',
|
||||
|
@ -140,7 +142,8 @@ pandora.ui.home = function() {
|
|||
? []
|
||||
: [{key: '*', value: value, operator: '='}],
|
||||
operator: '&'
|
||||
}
|
||||
},
|
||||
section: 'items'
|
||||
});
|
||||
}
|
||||
})
|
||||
|
@ -162,7 +165,8 @@ pandora.ui.home = function() {
|
|||
.bindEvent({
|
||||
click: function() {
|
||||
pandora.UI.set({
|
||||
page: pandora.user.ui.page == 'home' ? '' : pandora.user.ui.page
|
||||
page: pandora.user.ui.page == 'home' ? '' : pandora.user.ui.page,
|
||||
section: 'items'
|
||||
});
|
||||
that.fadeOutScreen();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue