Don't die if script has been removed from document
This commit is contained in:
parent
e213c8454c
commit
6e7530d253
|
@ -2380,7 +2380,7 @@ MathJax.Hub = {
|
|||
//
|
||||
var node = document.getElementById(error.id);
|
||||
if (node) node.parentNode.removeChild(node);
|
||||
script.parentNode.insertBefore(error,script);
|
||||
if (script.parentNode) script.parentNode.insertBefore(error,script);
|
||||
if (script.MathJax.preview) {script.MathJax.preview.innerHTML = ""}
|
||||
//
|
||||
// Save the error for debugging purposes
|
||||
|
|
Loading…
Reference in New Issue
Block a user