Fix TeX.Environment() to use the correct end environment.

This commit is contained in:
Davide P. Cervone 2016-04-08 13:38:43 -04:00
parent 288e4f476d
commit d698760e58

View File

@ -258,7 +258,7 @@ MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
});
TEX.Environment = function (name) {
TEXDEF.environment[name] = ['BeginEnv','EndEnv'].concat([].slice.call(arguments,1));
TEXDEF.environment[name] = ['BeginEnv',[null,'EndEnv']].concat([].slice.call(arguments,1));
TEXDEF.environment[name].isUser = true;
}