Disable context menu

This commit is contained in:
Augusto Gunsch 2022-01-16 18:16:19 -03:00
parent 2bc21159db
commit 51fcdf9f94
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
1 changed files with 8 additions and 3 deletions

View File

@ -6,9 +6,14 @@
<link rel="stylesheet" href="${root}stylesheet.css"/> <link rel="stylesheet" href="${root}stylesheet.css"/>
<script> <script>
window.MathJax = { window.MathJax = {
tex: { tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']] inlineMath: [['$', '$'], ['\\(', '\\)']]
} },
options: {
enableMenu: false,
enableEnrichment: false,
makeCollapsible: false
}
}; };
</script> </script>
<script src="${root}mathjax/es5/tex-mml-chtml.js"></script> <script src="${root}mathjax/es5/tex-mml-chtml.js"></script>