diff options
author | Palaparthy Adityachandra | 2020-11-03 17:20:23 +0530 |
---|---|---|
committer | GitHub | 2020-11-03 17:20:23 +0530 |
commit | 81f96a24954d375ab32ab8dfb1ee8aba299655c6 (patch) | |
tree | add26043d9c69cf50553b5eb45e8744618a4b607 /yaksh/templates/base.html | |
parent | 602f88e334865c995d86a457acdca6cc43b354ef (diff) | |
parent | 81f04f1382b1416480ed0bf0e4018afcce4cfef4 (diff) | |
download | online_test-81f96a24954d375ab32ab8dfb1ee8aba299655c6.tar.gz online_test-81f96a24954d375ab32ab8dfb1ee8aba299655c6.tar.bz2 online_test-81f96a24954d375ab32ab8dfb1ee8aba299655c6.zip |
Merge pull request #785 from adityacp/multiple_ui_fixes
Multiple UI changes
Diffstat (limited to 'yaksh/templates/base.html')
-rw-r--r-- | yaksh/templates/base.html | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/yaksh/templates/base.html b/yaksh/templates/base.html index 2cc607c..4fa12c7 100644 --- a/yaksh/templates/base.html +++ b/yaksh/templates/base.html @@ -52,12 +52,21 @@ <script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.js" integrity="sha384-g7c+Jr9ZivxKLnZTDUhnkOnsh30B4H0rpLUpJ4jAIKs4fnJI+sEnkvrMWph2EDg4" crossorigin="anonymous"></script> <!-- To automatically render math in text elements, include the auto-render extension: --> - <script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/contrib/auto-render.min.js" integrity="sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa" crossorigin="anonymous" - onload="renderMathInElement(document.body);"></script> + <script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/contrib/auto-render.min.js" integrity="sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa" crossorigin="anonymous"> + </script> <script> new WOW().init(); $(document).ready(function() { + renderMathInElement( + document.body, + { + delimiters: [ + {left: "$$", right: "$$", display: false}, + {left: "$", right: "$", display: true}, + ] + } + ); $(".alert").delay(2000).slideUp(200, function() { $(this).alert('close'); }); |