Commit 4e26869d authored by Oleg.Korshul's avatar Oleg.Korshul

неправильно сделал для минимизации

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@65304 954022d7-b5bf-4e40-9824-e11837661b57
parent ff1b0b8a
......@@ -7440,36 +7440,36 @@ window["asc_docs_api"].prototype["asc_nativeGetPDF"] = function()
};
// cool api (autotests)
window.asc_docs_api.prototype["Add_Text"] = window.asc_docs_api.prototype.Add_Text = function(_text)
window["asc_docs_api"].prototype["Add_Text"] = function(_text)
{
this.WordControl.m_oLogicDocument.TextBox_Put(_text);
};
window.asc_docs_api.prototype["Add_NewParagraph"] = window.asc_docs_api.prototype.Add_NewParagraph = function()
window["asc_docs_api"].prototype["Add_NewParagraph"] = function()
{
this.WordControl.m_oLogicDocument.Add_NewParagraph(true);
};
window.asc_docs_api.prototype["Cursor_MoveLeft"] = window.asc_docs_api.prototype.Cursor_MoveLeft = function()
window["asc_docs_api"].prototype["Cursor_MoveLeft"] = function()
{
this.WordControl.m_oLogicDocument.Cursor_MoveLeft();
};
window.asc_docs_api.prototype["Cursor_MoveRight"] = window.asc_docs_api.prototype.Cursor_MoveRight = function()
window["asc_docs_api"].prototype["Cursor_MoveRight"] = function()
{
this.WordControl.m_oLogicDocument.Cursor_MoveRight();
};
window.asc_docs_api.prototype["Cursor_MoveUp"] = window.asc_docs_api.prototype.Cursor_MoveUp = function()
window["asc_docs_api"].prototype["Cursor_MoveUp"] = function()
{
this.WordControl.m_oLogicDocument.Cursor_MoveUp();
};
window.asc_docs_api.prototype["Cursor_MoveDown"] = window.asc_docs_api.prototype.Cursor_MoveDown = function()
window["asc_docs_api"].prototype["Cursor_MoveDown"] = function()
{
this.WordControl.m_oLogicDocument.Cursor_MoveDown();
};
window.asc_docs_api.prototype["asc_IsSpellCheckCurrentWord"] = window.asc_docs_api.prototype.asc_IsSpellCheckCurrentWord = function()
window["asc_docs_api"].prototype["asc_IsSpellCheckCurrentWord"] = function()
{
return this.IsSpellCheckCurrentWord;
};
window.asc_docs_api.prototype["asc_putSpellCheckCurrentWord"] = window.asc_docs_api.prototype.asc_putSpellCheckCurrentWord = function(value)
window["asc_docs_api"].prototype["asc_putSpellCheckCurrentWord"] = function(value)
{
this.IsSpellCheckCurrentWord = value;
};
......
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