mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-24 07:34:22 +00:00
6d99438a7c
Example usage: $('#wikiPreview').renderTex(); This supersedes: https://gerrit.wikimedia.org/r/23073 Bug: 35478 Change-Id: I18e2f089d56e42b8e603ac45d726942bb478580b
125 lines
3.2 KiB
JavaScript
125 lines
3.2 KiB
JavaScript
/**
|
|
* From https://en.wikipedia.org/wiki/User:Nageh/mathJax.js
|
|
*/
|
|
/*global mathJax:true, MathJax, wikEd:true */
|
|
( function ( mw, $ ) {
|
|
if ( typeof mathJax === 'undefined' ) {
|
|
mathJax = {};
|
|
}
|
|
|
|
mathJax.version = '0.2';
|
|
|
|
mathJax.loaded = false;
|
|
|
|
mathJax.config = $.extend( true, {
|
|
root: mw.config.get('wgExtensionAssetsPath') + '/Math/modules/MathJax',
|
|
config: ['TeX-AMS-texvc_HTML.js'],
|
|
'v1.0-compatible': false,
|
|
styles: {
|
|
'.mtext': {
|
|
'font-family': 'sans-serif ! important',
|
|
'font-size': '80%'
|
|
}
|
|
},
|
|
displayAlign: 'left',
|
|
menuSettings: {
|
|
zoom: 'Click'
|
|
},
|
|
'HTML-CSS': {
|
|
imageFont: null,
|
|
availableFonts: ['TeX']
|
|
}
|
|
}, mathJax.config );
|
|
|
|
mathJax.Config = function () {
|
|
MathJax.Hub.Config( mathJax.config );
|
|
MathJax.OutputJax.fontDir = mw.config.get('wgExtensionAssetsPath') + '/Math/modules/MathJax/fonts';
|
|
};
|
|
|
|
/**
|
|
* Renders all Math TeX inside the given elements.
|
|
* @param {function} callback to be executed after text elements have rendered [optional]
|
|
*/
|
|
$.fn.renderTex = function ( callback ) {
|
|
var elem = this.find( '.tex' ).parent().toArray();
|
|
|
|
if ( !$.isFunction( callback ) ) {
|
|
callback = $.noop;
|
|
}
|
|
|
|
function render () {
|
|
MathJax.Hub.Queue( ['Typeset', MathJax.Hub, elem, callback] );
|
|
}
|
|
|
|
mw.loader.using( 'ext.math.mathjax', function () {
|
|
if ( MathJax.isReady ) {
|
|
render();
|
|
} else {
|
|
MathJax.Hub.Startup.signal.MessageHook( 'End', render );
|
|
}
|
|
});
|
|
return this;
|
|
};
|
|
|
|
mathJax.Load = function () {
|
|
var config, script;
|
|
if (this.loaded) {
|
|
return true;
|
|
}
|
|
|
|
// create configuration element
|
|
config = 'mathJax.Config();';
|
|
script = document.createElement( 'script' );
|
|
script.setAttribute( 'type', 'text/x-mathjax-config' );
|
|
if ( window.opera ) {
|
|
script.innerHTML = config;
|
|
} else {
|
|
script.text = config;
|
|
}
|
|
document.getElementsByTagName('head')[0].appendChild( script );
|
|
|
|
// create startup element
|
|
mw.loader.load('ext.math.mathjax');
|
|
|
|
this.loaded = true;
|
|
|
|
return false;
|
|
};
|
|
|
|
mathJax.Init = function () {
|
|
this.Load( document.getElementById('bodyContent') || document.body );
|
|
|
|
// compatibility with wikEd
|
|
if ( typeof wikEd === 'undefined' ) {
|
|
wikEd = {};
|
|
}
|
|
if ( wikEd.config === undefined ) {
|
|
wikEd.config = {};
|
|
}
|
|
if ( wikEd.config.previewHook === undefined ) {
|
|
wikEd.config.previewHook = [];
|
|
}
|
|
wikEd.config.previewHook.push( function (){
|
|
if (window.mathJax.Load(document.getElementById('wikEdPreviewBox') || document.body)) {
|
|
MathJax.Hub.Queue(['Typeset', MathJax.Hub, 'wikEdPreviewBox']);
|
|
}
|
|
} );
|
|
|
|
// compatibility with ajaxPreview
|
|
this.oldAjaxPreviewExec = window.ajaxPreviewExec;
|
|
window.ajaxPreviewExec = function (previewArea) {
|
|
if ( mathJax.oldAjaxPreviewExec !== undefined ) {
|
|
mathJax.oldAjaxPreviewExec(previewArea);
|
|
}
|
|
if ( mathJax.Load(previewArea) ) {
|
|
MathJax.Hub.Queue( ['Typeset', MathJax.Hub, previewArea] );
|
|
}
|
|
};
|
|
};
|
|
|
|
$( document ).ready( function () {
|
|
mathJax.Init();
|
|
} );
|
|
|
|
}( mediaWiki, jQuery ) );
|