We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When attempting to load the WebView, the following error occurs.
I/chromium: [INFO:CONSOLE(1)] "Uncaught ReferenceError: MathJax is not defined", source: (1)
Here is my code for loading the WebView (with the MathJax src loaded into my assets folder).
WebView w = (WebView) findViewById(R.id.webView); w.getSettings().setJavaScriptEnabled(true); w.getSettings().setBuiltInZoomControls(false); w.loadDataWithBaseURL("http://bar", "<script type='text/x-mathjax-config'>" +"MathJax.Hub.Config({ " +"showMathMenu: false, " +"jax: ['input/TeX','output/HTML-CSS'], " +"extensions: ['tex2jax.js'], " +"TeX: { extensions: ['AMSmath.js','AMSsymbols.js'," +"'noErrors.js','noUndefined.js'] } " +"});</script>" +"<script type='text/javascript' " +"src='file:///android_asset/MathJax/MathJax.js'" +"></script><span id='math'></span>","text/html","utf-8","");
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When attempting to load the WebView, the following error occurs.
I/chromium: [INFO:CONSOLE(1)] "Uncaught ReferenceError: MathJax is not defined", source: (1)
Here is my code for loading the WebView (with the MathJax src loaded into my assets folder).
The text was updated successfully, but these errors were encountered: