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 1759
1759
// Autoload files based on node type or file name
1760
1760
//
1761
1761
CHTMLautoload : function ( ) {
1762
- this . toCommonHTML = MML . mbase . CHTMLautoloadFail ;
1762
+ this . constructor . Augment ( { toCommonHTML : MML . mbase . CHTMLautoloadFail } ) ;
1763
1763
var file = CHTML . autoloadDir + "/" + this . type + ".js" ;
1764
1764
HUB . RestartAfter ( AJAX . Require ( file ) ) ;
1765
1765
} ,
Original file line number Diff line number Diff line change 2193
2193
2194
2194
} , {
2195
2195
HTMLautoload : function ( ) {
2196
- this . toHTML = MML . mbase . HTMLautoloadFail ;
2196
+ this . constructor . Augment ( { toHTML : MML . mbase . HTMLautoloadFail } ) ;
2197
2197
var file = HTMLCSS . autoloadDir + "/" + this . type + ".js" ;
2198
2198
HUB . RestartAfter ( AJAX . Require ( file ) ) ;
2199
2199
} ,
Original file line number Diff line number Diff line change 1453
1453
return svg ;
1454
1454
} ,
1455
1455
SVGautoload : function ( ) {
1456
- this . toSVG = MML . mbase . SVGautoloadFail ;
1456
+ this . constructor . Augment ( { toSVG : MML . mbase . SVGautoloadFail } ) ;
1457
1457
var file = SVG . autoloadDir + "/" + this . type + ".js" ;
1458
1458
HUB . RestartAfter ( AJAX . Require ( file ) ) ;
1459
1459
} ,
You can’t perform that action at this time.
0 commit comments