Commit 792eb8d5 authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug with math content change.

parent b0ddd707
......@@ -207,8 +207,8 @@ CChangesMathContentAddItem.prototype.Redo = function()
{
var oMathContent = this.Class;
var Array_start = this.Content.slice(0, this.Pos);
var Array_end = this.Content.slice(this.Pos);
var Array_start = oMathContent.Content.slice(0, this.Pos);
var Array_end = oMathContent.Content.slice(this.Pos);
oMathContent.Content = Array_start.concat(this.Items, Array_end);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment