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