Implemented forum likes

This commit is contained in:
2017-07-08 23:27:24 +02:00
parent 7579c52188
commit 1f4dc0a05d
5 changed files with 51 additions and 17 deletions

View File

@ -47,8 +47,8 @@ export class Diff {
let elemA = a as HTMLElement
let elemB = b as HTMLElement
// Skip iframes
if(elemA.tagName === "IFRAME") {
// Skip iframes and lazy loaded images
if(elemA.tagName === "IFRAME" || elemA.classList.contains("lazy")) {
continue
}