1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-26 18:10:39 +12:00

use textContent, not innerText

This commit is contained in:
gorhill 2015-05-07 11:53:07 -04:00
parent 8f2b473928
commit a313e4653d

View file

@ -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;
}