use textContent, not innerText

pull/2/head
gorhill 9 years ago
parent 8f2b473928
commit a313e4653d

@ -443,7 +443,7 @@ var rowFilterer = (function() {
f = ff[i];
hit = !f.r;
for ( j = 0; j < ccount; j++ ) {
if ( f.re.test(cc[j].innerText) ) {
if ( f.re.test(cc[j].textContent) ) {
hit = f.r;
break;
}

Loading…
Cancel
Save