Commit c2c2f646 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

editor

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58143 954022d7-b5bf-4e40-9824-e11837661b57
parent ea4cca46
"use strict";
var editor = window["Asc"]["editor"];
if(typeof editor === "undefined" && window["Asc"]["editor"])
{
var editor = window["Asc"]["editor"];
}
function CContentChangesElement(Type, Pos, Count, Data)
......@@ -485,12 +488,17 @@ DrawingObjectsController.prototype.convertPixToMM = function(pix)
DrawingObjectsController.prototype.setParagraphNumbering = function(Bullet)
{
this.applyDocContentFunction(CDocumentContent.prototype.Set_ParagraphPresentationNumbering, [Bullet]);
this.applyDocContentFunction(CDocumentContent.prototype.Set_ParagraphPresentationNumbering, [Bullet], CTable.prototype.Set_ParagraphPresentationNumbering);
};
DrawingObjectsController.prototype.setParagraphIndent = function(Indent)
{
this.applyDocContentFunction(CDocumentContent.prototype.Set_ParagraphIndent, [Indent], CTable.prototype.Set_ParagraphIndent);
};
DrawingObjectsController.prototype.paragraphIncDecIndent = function(bIncrease)
{
this.applyDocContentFunction(CDocumentContent.prototype.Increase_ParagraphLevel, [bIncrease]);
this.applyDocContentFunction(CDocumentContent.prototype.Increase_ParagraphLevel, [bIncrease], CTable.prototype.Increase_ParagraphLevel);
};
DrawingObjectsController.prototype.canIncreaseParagraphLevel = function(bIncrease)
......
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