Commit 0b03bc3f authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

git-svn-id:...

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@47897 954022d7-b5bf-4e40-9824-e11837661b57
parent 0591d059
...@@ -541,6 +541,17 @@ function CCacheManager() ...@@ -541,6 +541,17 @@ function CCacheManager()
this.arrayImages[index].image_unusedCount = 0; this.arrayImages[index].image_unusedCount = 0;
return this.arrayImages[index]; return this.arrayImages[index];
} }
this.Clear = function()
{
for (var i = 0; i < this.arrayCount; ++i)
{
delete this.arrayImages[i].image;
this.arrayImages.splice(i, 1);
--i;
--this.arrayCount;
}
}
} }
function _rect() function _rect()
......
This diff is collapsed.
...@@ -3762,7 +3762,7 @@ asc_docs_api.prototype.SlideTransitionPlay = function() ...@@ -3762,7 +3762,7 @@ asc_docs_api.prototype.SlideTransitionPlay = function()
_tr.Param = _timing.TransitionOption; _tr.Param = _timing.TransitionOption;
_tr.Duration = _timing.TransitionDuration; _tr.Duration = _timing.TransitionDuration;
_tr.Start(); _tr.Start(true);
} }
asc_docs_api.prototype.SetTextBoxInputMode = function(bIsEA) asc_docs_api.prototype.SetTextBoxInputMode = function(bIsEA)
......
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