Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MathJax: Hiding Mathjax loading process

I have Mathjax in my code that I show in UIWebView. while Mathjax is loading it shows the loading process n the left down corner of my UIWebView same as below pics, that i want to hide them. I do not want my user see them.

loading process

loading process

note: dummy solution is showing a fake "Loading" for some second that loading process finish and then show UIWebView. I really do not want to use this way.

like image 615
nfarshchi Avatar asked Jul 07 '12 05:07

nfarshchi


2 Answers

In your MathJax configuration, you can add this:

messageStyle: "none"

According to the documentation, this should do the trick: http://docs.mathjax.org/en/latest/options/hub.html

like image 72
pikzen Avatar answered Dec 03 '22 09:12

pikzen


Try this, it is working for me:

MathJax.Hub.Config({messageStyle: 'none',tex2jax: {preview: 'none'}});
like image 27
mariosm Avatar answered Dec 03 '22 08:12

mariosm