1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 15:47:00 +02:00

Avoid qsl in check[]

Table with 1000 rows rendered in 1.8 instead of 7.5 seconds.
This commit is contained in:
Jakub Vrana
2018-02-07 18:54:57 +01:00
parent 4b45722fad
commit 6a7ee5a2f3
2 changed files with 5 additions and 1 deletions

View File

@@ -273,6 +273,10 @@ function tableClick(event, click) {
el.checked = !el.checked;
el.onclick && el.onclick();
}
if (el.name == 'check[]') {
el.form['all'].checked = false;
formUncheck('all-page');
}
trCheck(el);
}