mirror of
https://github.com/vrana/adminer.git
synced 2025-08-22 14:12:51 +02:00
Fix All checkbox in Opera (bug #374)
This commit is contained in:
@@ -95,7 +95,7 @@ function parentTag(el, tag) {
|
|||||||
function trCheck(el) {
|
function trCheck(el) {
|
||||||
var tr = parentTag(el, 'tr');
|
var tr = parentTag(el, 'tr');
|
||||||
alterClass(tr, 'checked', el.checked);
|
alterClass(tr, 'checked', el.checked);
|
||||||
if (el.form && el.form['all']) {
|
if (el.form && el.form['all'] && el.form['all'].onclick) { // Opera thinks that 'all' is who knows what
|
||||||
el.form['all'].onclick();
|
el.form['all'].onclick();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user