File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ mjAPI.start();
8484// Process an HTML file:
8585//
8686function processHTML ( html , callback ) {
87- var document = jsdom ( html , null , { features :{ FetchExternalResources : false } } ) ;
87+ var document = jsdom ( html , { features :{ FetchExternalResources : false } } ) ;
8888 var xmlns = getXMLNS ( document ) ;
8989 mjAPI . typeset ( {
9090 html :document . body . innerHTML ,
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ if (argv.dpi === 0) {argv.dpi = argv.ex * 16} // pixels properly sized
9898// Process an HTML file:
9999//
100100function processHTML ( html , callback ) {
101- var document = jsdom ( html , null , { features :{ FetchExternalResources : false } } ) ;
101+ var document = jsdom ( html , { features :{ FetchExternalResources : false } } ) ;
102102 var xmlns = getXMLNS ( document ) ;
103103 mjAPI . typeset ( {
104104 html : document . body . innerHTML ,
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ mjAPI.start();
100100// Process an HTML file:
101101//
102102function processHTML ( html , callback ) {
103- var document = jsdom ( html , null , { features :{ FetchExternalResources : false } } ) ;
103+ var document = jsdom ( html , { features :{ FetchExternalResources : false } } ) ;
104104 var xmlns = getXMLNS ( document ) ;
105105 mjAPI . typeset ( {
106106 html : document . body . innerHTML ,
You can’t perform that action at this time.
0 commit comments