Closed deepakverma4 closed 6 years ago
Without more information about how your application works, how it interacts with MathJax, and what MathJax configuration you are using, it is not possible to answer your question about reducing rendering time.
As for showing a loader during rendering, consider this post as an example. You use MathJax.Hub.Queue()
to queue a function that turns off the load indicator, and it will not run until after MathJax finishes typesetting the page (since the initial typesetting has been queued before your function).
Finally, note that this is not the best place to ask such questions. This issue tracker is for reporting errors in MathJax. Asking questions about how to do things is better done on the MathJax User Forum where more people will see it.
I am using mathjax with my react-native quiz application. But it is taking too much time in loading the question with all four options and downgrading the performance of application. I tried putting loader when webview loads but loader stays only untill the webview loads and rending of mathematical questions still takes more time to display. Any way by which we can reduce the rendering time or put a loader/activity indicator on rending too?