[DE] BulletSettingsDialog -> ListSettingsDialog
This commit is contained in:
parent
8a3edb0239
commit
7b1f56d69f
|
@ -59,7 +59,7 @@ define([
|
|||
'documenteditor/main/app/view/ControlSettingsDialog',
|
||||
'documenteditor/main/app/view/WatermarkSettingsDialog',
|
||||
'documenteditor/main/app/view/CompareSettingsDialog',
|
||||
'documenteditor/main/app/view/BulletSettingsDialog'
|
||||
'documenteditor/main/app/view/ListSettingsDialog'
|
||||
], function () {
|
||||
'use strict';
|
||||
|
||||
|
@ -1334,7 +1334,7 @@ define([
|
|||
props = (listId !== null) ? me.api.asc_GetNumberingPr(listId).get_Lvl(level) : null;
|
||||
if (props) {
|
||||
var type = props.get_Format();
|
||||
(new DE.Views.BulletSettingsDialog({
|
||||
(new DE.Views.ListSettingsDialog({
|
||||
api: me.api,
|
||||
props: props,
|
||||
level: level,
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* BulletSettingsDialog.js
|
||||
* ListSettingsDialog.js
|
||||
*
|
||||
* Created by Julia Radzhabova on 03.12.2019
|
||||
* Copyright (c) 2019 Ascensio System SIA. All rights reserved.
|
||||
|
@ -50,7 +50,7 @@ define([
|
|||
'common/main/lib/view/SymbolTableDialog'
|
||||
], function () { 'use strict';
|
||||
|
||||
DE.Views.BulletSettingsDialog = Common.UI.Window.extend(_.extend({
|
||||
DE.Views.ListSettingsDialog = Common.UI.Window.extend(_.extend({
|
||||
options: {
|
||||
type: Asc.c_oAscNumberingFormat.Bullet,
|
||||
width: 300,
|
||||
|
@ -400,5 +400,5 @@ define([
|
|||
textPreview: 'Preview',
|
||||
txtType: 'Type',
|
||||
txtLikeText: 'Like a text'
|
||||
}, DE.Views.BulletSettingsDialog || {}))
|
||||
}, DE.Views.ListSettingsDialog || {}))
|
||||
});
|
Loading…
Reference in a new issue