Bug 786842 - Fix replaceBrs() typo for checking whitespace. r=lucasr

This commit is contained in:
Brian Nicholson 2012-08-31 15:33:01 -07:00
Родитель 77ce07cbdd
Коммит bf22f6c484
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -239,7 +239,7 @@ Readability.prototype = {
let next = node;
while (next
&& (next.nodeType != Node.ELEMENT_NODE)
&& !whitespace.test(next.textContent)) {
&& whitespace.test(next.textContent)) {
next = next.nextSibling;
}
return next;