Heavily improved forum readability

This commit is contained in:
2017-06-20 15:46:49 +02:00
parent ef6c5aaea0
commit 76d43f9f43
12 changed files with 63 additions and 14 deletions

5
scripts/Diff.ts Normal file
View File

@ -0,0 +1,5 @@
export class Diff {
static update(element: HTMLElement, html: string) {
element.innerHTML = html
}
}