From 2e87bd7afa6befc88e10cd8c906bcbab4d343463 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 10 Jun 2019 16:01:10 +0300 Subject: [PATCH] [DE][PE] Add tooltips for table styles --- apps/documenteditor/main/app/view/TableSettings.js | 3 ++- apps/presentationeditor/main/app/view/TableSettings.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/view/TableSettings.js b/apps/documenteditor/main/app/view/TableSettings.js index 648afe5d0b..a728cfc1d1 100644 --- a/apps/documenteditor/main/app/view/TableSettings.js +++ b/apps/documenteditor/main/app/view/TableSettings.js @@ -721,7 +721,8 @@ define([ arr.push({ imageUrl: template.asc_getImage(), id : Common.UI.getId(), - templateId: template.asc_getId() + templateId: template.asc_getId(), + tip : template.asc_getDisplayName() }); }); self.cmbTableTemplate.menuPicker.store.add(arr); diff --git a/apps/presentationeditor/main/app/view/TableSettings.js b/apps/presentationeditor/main/app/view/TableSettings.js index dce548f59c..aa3ba303b9 100644 --- a/apps/presentationeditor/main/app/view/TableSettings.js +++ b/apps/presentationeditor/main/app/view/TableSettings.js @@ -690,7 +690,8 @@ define([ arr.push({ imageUrl: template.asc_getImage(), id : Common.UI.getId(), - templateId: template.asc_getId() + templateId: template.asc_getId(), + tip : template.asc_getDisplayName() }); }); self.cmbTableTemplate.menuPicker.store.add(arr);