Commit 9e070140 authored by Alexey.Musinov's avatar Alexey.Musinov

[mobile] исправления для сборки скриптов

parent f5e5d6e1
......@@ -840,7 +840,10 @@ DrawingObjectsController.prototype =
},
drawSelect: function(pageIndex, drawingDocument)
{
{
if (undefined !== drawingDocument.BeginDrawTracking)
drawingDocument.BeginDrawTracking();
var i;
if(this.selection.textSelection)
{
......@@ -1004,7 +1007,11 @@ DrawingObjectsController.prototype =
{
drawingDocument.DrawTrackSelectShapes(this.selectionRect.x, this.selectionRect.y, this.selectionRect.w, this.selectionRect.h);
}
return;
if (undefined !== drawingDocument.EndDrawTracking)
drawingDocument.EndDrawTracking();
return;
},
selectObject: function(object, pageIndex)
......
This diff is collapsed.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
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