File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
unpacked/jax/output/NativeMML Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
28
28
MathJax . OutputJax . NativeMML = MathJax . OutputJax ( {
29
29
id : "NativeMML" ,
30
- version : "2.2" ,
30
+ version : "2.2.1 " ,
31
31
directory : MathJax . OutputJax . directory + "/NativeMML" ,
32
32
extensionDir : MathJax . OutputJax . extensionDir + "/NativeMML" ,
33
33
Original file line number Diff line number Diff line change 576
576
if ( this . data [ this . sub ] == null ) { type = "msup" }
577
577
var tag = this . NativeMMLelement ( type ) ;
578
578
this . NativeMMLattributes ( tag ) ;
579
- delete this . data [ 0 ] . inferred ;
579
+ if ( this . data [ 0 ] ) { delete this . data [ 0 ] . inferred }
580
580
for ( var i = 0 , m = this . data . length ; i < m ; i ++ )
581
581
{ if ( this . data [ i ] ) { this . data [ i ] . toNativeMML ( tag ) } }
582
582
parent . appendChild ( tag ) ;
594
594
if ( this . data [ this . over ] == null ) { type = "munder" }
595
595
var tag = this . NativeMMLelement ( type ) ;
596
596
this . NativeMMLattributes ( tag ) ;
597
- delete this . data [ 0 ] . inferred ;
597
+ if ( this . data [ 0 ] ) { delete this . data [ 0 ] . inferred }
598
598
for ( var i = 0 , m = this . data . length ; i < m ; i ++ )
599
599
{ if ( this . data [ i ] ) { this . data [ i ] . toNativeMML ( tag ) } }
600
600
parent . appendChild ( tag ) ;
746
746
}
747
747
}
748
748
749
- if ( nMML . tableLabelBug ) {
749
+ if ( nMML . tableLabelBug && this . data [ 0 ] ) {
750
750
var side = this . parent . Get ( "side" ) . charAt ( 0 ) ,
751
751
align = HUB . config . displayAlign . charAt ( 0 ) ,
752
752
indent = HUB . config . displayIndent ;
You can’t perform that action at this time.
0 commit comments