Fix a typo in the displaystyle parameter for the pre- and post-filters of the TeX input jax

This commit is contained in:
Davide P. Cervone 2012-01-20 11:02:31 -05:00
parent b0fd920efb
commit 14b3702e85
8 changed files with 9 additions and 9 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -2049,10 +2049,10 @@
// Add the default filters
//
TEX.prefilterHooks.Add(function (data) {
data.math = TEX.prefilterMath(data.math,data.displaystyle,data.script);
data.math = TEX.prefilterMath(data.math,data.display,data.script);
});
TEX.postfilterHooks.Add(function (data) {
data.math = TEX.postfilterMath(data.math,data.displaystyle,data.script);
data.math = TEX.postfilterMath(data.math,data.display,data.script);
});
TEX.loadComplete("jax.js");