Added list item status

This commit is contained in:
2017-06-29 15:55:04 +02:00
parent 7f9d599b50
commit dc4d4ae34c
8 changed files with 33 additions and 10 deletions

View File

@ -57,6 +57,11 @@ export class Diff {
let attrib = elemB.attributes[x]
if(attrib.specified) {
// Skip mountables
if(attrib.name == "class" && elemA.classList.contains("mounted")) {
continue
}
elemA.setAttribute(attrib.name, elemB.getAttribute(attrib.name))
}
}