Diff for /loncom/html/adm/LC_math_editor/src/enode.js between versions 1.2 and 1.3

version 1.2, 2015/02/24 15:20:44 version 1.3, 2017/01/27 20:31:09
Line 627  ENode.prototype._toMathML = function(con Line 627  ENode.prototype._toMathML = function(con
             mrow2 = document.createElement('mrow');              mrow2 = document.createElement('mrow');
             for (i=0; i<this.children.length; i++) {              for (i=0; i<this.children.length; i++) {
                 if (i > 0)                  if (i > 0)
                     mrow2.appendChild(this.mo(";"));                      mrow2.appendChild(this.mo(Definitions.ARG_SEPARATOR));
                 mrow2.appendChild(this.children[i]._toMathML(context));                  mrow2.appendChild(this.children[i]._toMathML(context));
             }              }
             mrow.appendChild(mrow2);              mrow.appendChild(mrow2);

Removed from v.1.2  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>