Commit bcebae31 authored by Phil Hughes's avatar Phil Hughes

Remove jQuery from IPython notebook viewer

parent 76a15db4
...@@ -63,16 +63,20 @@ export default () => { ...@@ -63,16 +63,20 @@ export default () => {
}, },
}, },
mounted() { mounted() {
$('<link>', { if (gon.katex_css_url) {
rel: 'stylesheet', const katexStyles = document.createElement('link');
type: 'text/css', katexStyles.setAttribute('rel', 'stylesheet');
href: gon.katex_css_url, katexStyles.setAttribute('href', gon.katex_css_url);
}).appendTo('head'); document.head.appendChild(katexStyles);
}
if (gon.katex_js_url) { if (gon.katex_js_url) {
$.getScript(gon.katex_js_url, () => { const katexScript = document.createElement('script');
katexScript.addEventListener('load', () => {
this.loadFile(); this.loadFile();
}); });
katexScript.setAttribute('src', gon.katex_js_url);
document.head.appendChild(katexScript);
} else { } else {
this.loadFile(); this.loadFile();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment