mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-12-25 08:10:12 +01:00
fixed a sorting bug in webui popup window
This commit is contained in:
parent
4b37be8f19
commit
9c9f59ac52
@ -330,9 +330,15 @@ function assemble_search_term(n) {
|
||||
function fix_search_order(sort, order) {
|
||||
var a;
|
||||
|
||||
a = document.getElementById('xsort');
|
||||
if(a) a.value = sort;
|
||||
|
||||
a = document.getElementById('sort');
|
||||
a.value = sort;
|
||||
|
||||
a = document.getElementById('xorder');
|
||||
if(a) a.value = order;
|
||||
|
||||
a = document.getElementById('order');
|
||||
a.value = order;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user