diff options
Diffstat (limited to '')
-rw-r--r-- | client/client.js | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/client/client.js b/client/client.js index 1c40f01..53f2856 100644 --- a/client/client.js +++ b/client/client.js @@ -36,13 +36,13 @@ function $(query) { function localStorageGet(key) { try { return window.localStorage[key] - } catch(e) { } + } catch (e) { } } function localStorageSet(key, val) { try { window.localStorage[key] = val - } catch(e) { } + } catch (e) { } } var ws; @@ -214,10 +214,12 @@ function pushMessage(args) { // Temporary hotfix for \rule spamming, see https://github.com/Khan/KaTeX/issues/109 textEl.innerHTML = textEl.innerHTML.replace(/\\rule|\\\\\s*\[.*?\]/g, ''); try { - renderMathInElement(textEl, {delimiters: [ - { left: "$$", right: "$$", display: true }, - { left: "$", right: "$", display: false }, - ]}) + renderMathInElement(textEl, { + delimiters: [ + { left: "$$", right: "$$", display: true }, + { left: "$", right: "$", display: false }, + ] + }) } catch (e) { console.warn(e); } @@ -601,4 +603,4 @@ if (myChannel == '') { $('#sidebar').classList.add('hidden'); } else { join(myChannel); -} +}
\ No newline at end of file |