Merge pull request #392 from alastairR/master

NZ Herald fix, missing curly brace
master
Adam 2019-11-21 20:02:51 -08:00 committed by GitHub
commit c568f735ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -177,13 +177,13 @@ function removeDOMElement(...elements) {
} }
} }
function removeClassesByPrefix(el, prefix) function removeClassesByPrefix(el, prefix) {
{
for (let i = el.classList.length - 1; i >= 0; i--) { for (let i = el.classList.length - 1; i >= 0; i--) {
if(el.classList[i].startsWith(prefix)) { if(el.classList[i].startsWith(prefix))
el.classList.remove(el.classList[i]); el.classList.remove(el.classList[i]);
} }
} }
}
function pageContains(selector, text) { function pageContains(selector, text) {
let elements = document.querySelectorAll(selector); let elements = document.querySelectorAll(selector);