mirror of
https://github.com/github/semantic.git
synced 2024-12-26 00:12:29 +03:00
Add replacements to the DOM.
This commit is contained in:
parent
984858bb9c
commit
5d864a7f3d
@ -44,6 +44,9 @@
|
||||
} else if (json['delete'] != null) {
|
||||
div.classList.add('delete');
|
||||
div.appendChild(toDOM(json['delete']));
|
||||
} else if (json['replace'] != null) {
|
||||
div.classList.add('replace');
|
||||
div.appendChild(toDOM(json['replace']));
|
||||
}
|
||||
if (json['categories'] != null) {
|
||||
for (index in json['categories']) {
|
||||
|
Loading…
Reference in New Issue
Block a user