Commit 83e53c22 authored by Anna.Pavlova's avatar Anna.Pavlova Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@52552 954022d7-b5bf-4e40-9824-e11837661b57
parent 3d46e9dd
...@@ -7558,17 +7558,20 @@ ParaMath.prototype = ...@@ -7558,17 +7558,20 @@ ParaMath.prototype =
RecalculateCurPos : function() RecalculateCurPos : function()
{ {
console.log("RecalculateCurPos");
this.Math.UpdateCursor();
}, },
Selection_SetStart : function(X, Y, PageNum) Selection_SetStart : function(X, Y, PageNum)
{ {
this.Math.Selection_SetStart( X, Y, PageNum ); this.Math.Selection_SetStart( X, Y, PageNum );
//console.log("Selection_SetStart");
}, },
Selection_SetEnd : function(X, Y, PageNum, MouseEvent) Selection_SetEnd : function(X, Y, PageNum, MouseEvent)
{ {
this.Math.Selection_SetEnd( X, Y, PageNum, MouseEvent ); this.Math.Selection_SetEnd( X, Y, PageNum, MouseEvent );
//console.log("Selection_SetEnd");
}, },
Selection_Beginning : function(bStart) Selection_Beginning : function(bStart)
...@@ -7584,11 +7587,16 @@ ParaMath.prototype = ...@@ -7584,11 +7587,16 @@ ParaMath.prototype =
Selection_Draw : function() Selection_Draw : function()
{ {
this.Math.Selection_Draw(); this.Math.Selection_Draw();
console.log("Selection_Draw");
}, },
Selection_IsEmpty : function() Selection_IsEmpty : function()
{ {
return false; var empty = this.Math.Selection_IsEmpty();
console.log("Selection_IsEmpty("+empty+")");
//return false;
return empty;
}, },
Selection_Remove : function() Selection_Remove : function()
......
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