diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-18 14:28:43 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-18 14:28:43 +0900 |
| commit | e66d7babc5ae477d7a60628e5599f9c390426c81 (patch) | |
| tree | 84733fc7b2a158e6d5786ccd72a58e40c301f140 /src/text/html.ts | |
| parent | wip (diff) | |
| download | misskey-e66d7babc5ae477d7a60628e5599f9c390426c81.tar.gz misskey-e66d7babc5ae477d7a60628e5599f9c390426c81.tar.bz2 misskey-e66d7babc5ae477d7a60628e5599f9c390426c81.zip | |
yatta
Diffstat (limited to 'src/text/html.ts')
| -rw-r--r-- | src/text/html.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text/html.ts b/src/text/html.ts index 41adb2e7f7..64208af88b 100644 --- a/src/text/html.ts +++ b/src/text/html.ts @@ -4,7 +4,7 @@ import config from '../config'; import { INote } from '../models/note'; import { TextElement } from './parse'; -const handlers: {[key: string]: (window: any, token: any, mentionedRemoteUsers: INote["mentionedRemoteUsers"]) => void} = { +const handlers: { [key: string]: (window: any, token: any, mentionedRemoteUsers: INote['mentionedRemoteUsers']) => void } = { bold({ document }, { bold }) { const b = document.createElement('b'); b.textContent = bold; |