javascript:PMA_markRowsInit speedup
This commit is contained in:
@@ -468,20 +468,13 @@ var marked_row = new Array;
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
function PMA_markRowsInit() {
|
function PMA_markRowsInit() {
|
||||||
// in every table ...
|
// for every table row ...
|
||||||
var tables = document.getElementsByTagName('table');
|
var rows = document.getElementsByTagName('tr');
|
||||||
for (var t=0; t<tables.length; t++) {
|
for ( var i = 0; i < rows.length; i++ ) {
|
||||||
// ... with the class 'data' ...
|
// ... with the class 'odd' or 'even' ...
|
||||||
if ( 'data' != tables[t].className ) {
|
if ( 'odd' != rows[i].className && 'even' != rows[i].className ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ... in tbody ...
|
|
||||||
var body = tables[t].getElementsByTagName('tbody')
|
|
||||||
// ... for every row ('tr') ...
|
|
||||||
var rows = body[0].getElementsByTagName('tr');
|
|
||||||
|
|
||||||
for (var i = 0; i < rows.length; i++) {
|
|
||||||
// ... add event listeners ...
|
// ... add event listeners ...
|
||||||
// ... to highlight the row on mouseover ...
|
// ... to highlight the row on mouseover ...
|
||||||
if ( navigator.appName == 'Microsoft Internet Explorer' ) {
|
if ( navigator.appName == 'Microsoft Internet Explorer' ) {
|
||||||
@@ -500,11 +493,7 @@ function PMA_markRowsInit() {
|
|||||||
|
|
||||||
var checkbox = this.getElementsByTagName( 'input' )[0];
|
var checkbox = this.getElementsByTagName( 'input' )[0];
|
||||||
if ( checkbox && checkbox.type == 'checkbox' ) {
|
if ( checkbox && checkbox.type == 'checkbox' ) {
|
||||||
if ( checkbox.id.length > 0 ) {
|
|
||||||
unique_id = checkbox.id;
|
|
||||||
} else {
|
|
||||||
unique_id = checkbox.name + checkbox.value;
|
unique_id = checkbox.name + checkbox.value;
|
||||||
}
|
|
||||||
} else if ( this.id.length > 0 ) {
|
} else if ( this.id.length > 0 ) {
|
||||||
unique_id = this.id;
|
unique_id = this.id;
|
||||||
} else {
|
} else {
|
||||||
@@ -545,7 +534,6 @@ function PMA_markRowsInit() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
window.onload=PMA_markRowsInit;
|
window.onload=PMA_markRowsInit;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user