From 5cf94b8ca93c590d8628d80c55112b80faf59956 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 24 Jan 2018 13:05:11 +0300 Subject: [PATCH] [DE] Fix adding table of contents. --- apps/documenteditor/main/app/controller/Links.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Links.js b/apps/documenteditor/main/app/controller/Links.js index 1310227ac..9fa0c834d 100644 --- a/apps/documenteditor/main/app/controller/Links.js +++ b/apps/documenteditor/main/app/controller/Links.js @@ -214,7 +214,7 @@ define([ props.put_ShowPageNumbers(true); props.put_RightAlignTab(true); props.put_TabLeader( Asc.c_oAscTabLeader.Dot); - (hasTable) ? this.api.asc_SetTableOfContentsPr(props) : this.api.asc_AddTableOfContents(null, props); + this.api.asc_AddTableOfContents(null, props); break; case 1: var props = this.api.asc_GetTableOfContentsPr(), @@ -226,7 +226,7 @@ define([ props.put_Hyperlink(true); props.put_ShowPageNumbers(false); props.put_TabLeader( Asc.c_oAscTabLeader.None); - (hasTable) ? this.api.asc_SetTableOfContentsPr(props) : this.api.asc_AddTableOfContents(null, props); + this.api.asc_AddTableOfContents(null, props); break; case 'settings': var props = this.api.asc_GetTableOfContentsPr(),