Use web components for SVG icons

This commit is contained in:
2019-08-30 16:04:28 +09:00
parent b32005cdee
commit d974156d68
13 changed files with 113 additions and 61 deletions

View File

@ -147,6 +147,12 @@ export default class Diff {
}
}
// Never diff the contents of web components
if(a.nodeName.includes("-")) {
continue
}
// Child nodes
Diff.childNodes(a, b)
}
}