Commit b10177d3 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Создаение глобальные дефолтовых стилей перенесено в общую часть.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68170 954022d7-b5bf-4e40-9824-e11837661b57
parent 2be29931
...@@ -1147,4 +1147,18 @@ function CPPTXContentWriter() ...@@ -1147,4 +1147,18 @@ function CPPTXContentWriter()
window.global_pptx_content_loader = new CPPTXContentLoader(); window.global_pptx_content_loader = new CPPTXContentLoader();
window.global_pptx_content_loader; window.global_pptx_content_loader;
window.global_pptx_content_writer = new CPPTXContentWriter(); window.global_pptx_content_writer = new CPPTXContentWriter();
window.global_pptx_content_writer; window.global_pptx_content_writer;
\ No newline at end of file
// Создаем глобальные дефолтовые стили, чтобы быстро можно было отдать дефолтовые настройки
var g_oDocumentDefaultTextPr = new CTextPr();
var g_oDocumentDefaultParaPr = new CParaPr();
var g_oDocumentDefaultTablePr = new CTablePr();
var g_oDocumentDefaultTableCellPr = new CTableCellPr();
var g_oDocumentDefaultTableRowPr = new CTableRowPr();
var g_oDocumentDefaultTableStylePr = new CTableStylePr();
g_oDocumentDefaultTextPr.Init_Default();
g_oDocumentDefaultParaPr.Init_Default();
g_oDocumentDefaultTablePr.Init_Default();
g_oDocumentDefaultTableCellPr.Init_Default();
g_oDocumentDefaultTableRowPr.Init_Default();
g_oDocumentDefaultTableStylePr.Init_Default();
\ No newline at end of file
...@@ -10638,18 +10638,4 @@ asc_CStyle.prototype["put_Type"] = asc_CStyle.prototype.put_Type; ...@@ -10638,18 +10638,4 @@ asc_CStyle.prototype["put_Type"] = asc_CStyle.prototype.put_Type;
asc_CStyle.prototype["get_Link"] = asc_CStyle.prototype.get_Link; asc_CStyle.prototype["get_Link"] = asc_CStyle.prototype.get_Link;
asc_CStyle.prototype["put_Link"] = asc_CStyle.prototype.put_Link; asc_CStyle.prototype["put_Link"] = asc_CStyle.prototype.put_Link;
// Создаем глобальные дефолтовые стили, чтобы быстро можно было отдать дефолтовые настройки
var g_oDocumentDefaultTextPr = new CTextPr();
var g_oDocumentDefaultParaPr = new CParaPr();
var g_oDocumentDefaultTablePr = new CTablePr();
var g_oDocumentDefaultTableCellPr = new CTableCellPr();
var g_oDocumentDefaultTableRowPr = new CTableRowPr();
var g_oDocumentDefaultTableStylePr = new CTableStylePr();
g_oDocumentDefaultTextPr.Init_Default();
g_oDocumentDefaultParaPr.Init_Default();
g_oDocumentDefaultTablePr.Init_Default();
g_oDocumentDefaultTableCellPr.Init_Default();
g_oDocumentDefaultTableRowPr.Init_Default();
g_oDocumentDefaultTableStylePr.Init_Default();
...@@ -8640,7 +8640,7 @@ CTable.prototype = ...@@ -8640,7 +8640,7 @@ CTable.prototype =
{ {
if ( true === this.CompiledPr.NeedRecalc ) if ( true === this.CompiledPr.NeedRecalc )
{ {
if (true !== g_oIdCounter.m_bLoad && true !== g_oIdCounter.m_bRead) if (true === g_oIdCounter.m_bLoad && true === g_oIdCounter.m_bRead)
{ {
this.CompiledPr.Pr = { this.CompiledPr.Pr = {
TextPr : g_oDocumentDefaultTextPr, TextPr : g_oDocumentDefaultTextPr,
......
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