Commit 3935f7c1 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

добавил функцию для перемещения последнего действия в истории(в текущей точке).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51439 954022d7-b5bf-4e40-9824-e11837661b57
parent 2e116f8d
......@@ -762,5 +762,14 @@ CHistory.prototype =
}
}
return aRes;
},
//функция, которая перемещает последнее действие на первую позицию(в текущей точке)
ChangeActionsEndToStart : function()
{
if(null != this.CurPoint && this.CurPoint.Items.length > 0)
{
var endAction = this.CurPoint.Items.pop();
this.CurPoint.Items.unshift(endAction);
}
}
};
\ No newline at end of file
......@@ -5763,11 +5763,8 @@
}
History.Add(g_oUndoRedoAutoFilters, type, ws.model.getId(), null, oHistoryObject);
if(deleteFilterAfterDeleteColRow && History.CurPoint && History.CurPoint.Items && History.CurPoint.Items.length)
{
var popEl = History.CurPoint.Items.pop();
History.CurPoint.Items.unshift(popEl);
}
if(deleteFilterAfterDeleteColRow)
History.ChangeActionsEndToStart();
},
_isAddNameColumn: function(range)
......
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