diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index 8dde117610..2fa5ae7c95 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -3720,148 +3720,6 @@ define([ }, onPluginToolbarMenu: function(data) { - // var icons = [ - // { - // "theme" : "theme-classic-light", - // "100%": { - // "normal": "http://127.0.0.1:8000/sdkjs-plugins/chatgpt/resources/light/icon.png", - // "active": "http://127.0.0.1:8000/sdkjs-plugins/chatgpt/resources/dark/icon.png" - // }, - // "200%": { - // "normal": "http://127.0.0.1:8000/sdkjs-plugins/chatgpt/resources/light/icon@2x.png", - // "active": "http://127.0.0.1:8000/sdkjs-plugins/chatgpt/resources/dark/icon@2x.png" - // } - // }, - // { - // "style" : "light", - // "100%": { - // "normal": "http://127.0.0.1:8000/sdkjs-plugins/chatgpt/resources/light/icon.png" - // }, - // "200%": { - // "normal": "http://127.0.0.1:8000/sdkjs-plugins/chatgpt/resources/light/icon@2x.png" - // } - // }, - // { - // "style" : "dark", - // "100%": { - // "normal": "http://127.0.0.1:8000/sdkjs-plugins/chatgpt/resources/dark/icon.png" - // }, - // "200%": { - // "normal": "http://127.0.0.1:8000/sdkjs-plugins/chatgpt/resources/dark/icon@2x.png" - // } - // } - // ]; - // data = [{ - // guid: 'plugin-guid-1', - // tabs: [ - // { - // id: 'tab1', - // text: 'Tab1', - // items: [ - // { - // id: 'button-id-1', - // type: 'button', - // icons: icons, - // text: "Button 1", - // hint: 'hint', - // lockInViewMode: true - // }, - // { - // id: 'button-id-2', - // type: 'button', - // icons: icons, - // text: "Button 2", - // enableToggle: true, - // hint: 'hint', - // lockInViewMode: true - // }, - // { - // id: 'button-id-3', - // type: 'button', - // icons: icons, - // text: "Button Menu 3", - // hint: 'hint', - // separator: true, - // split: false, - // // disabled: true, - // items: [ - // { - // id: 'item-id-1', - // text: 'Text1' - // } - // ], - // lockInViewMode: true - // }, - // { - // id: 'button-id-4', - // type: 'button', - // icons: icons, - // text: "Button Split Menu 4", - // hint: 'hint', - // split: true, - // items: [ - // { - // id: 'item-id-2', - // text: 'Text2' - // }, - // { - // id: 'item-id-2', - // text: 'Text2', - // items: [ - // { - // id: 'item-id-3', - // text: 'Text3' - // }, - // { - // id: 'item-id-3', - // text: 'Text3', - // separator: true - // } - // ], - // separator: true - // } - // ], - // lockInViewMode: true - // }, - // { - // id: 'button-id-5', - // type: 'button', - // icons: icons, - // text: "Toggle Split Menu 5", - // hint: 'hint', - // split: true, - // enableToggle: true, - // items: [ - // { - // id: 'item-id-2', - // text: 'Text2' - // }, - // { - // id: 'item-id-2', - // text: 'Text2', - // separator: true - // } - // ], - // lockInViewMode: true - // } - // ] - // }, - // { - // id: 'tab2', - // text: 'Tab2', - // items: [ - // { - // id: 'button-id-7', - // type: 'button', - // icons: icons, - // text: "Button 7", - // hint: 'hint', - // lockInViewMode: true - // }, - // ] - // } - // ] - // }]; this.toolbar && Array.prototype.push.apply(this.toolbar.lockControls, Common.UI.LayoutManager.addCustomItems(this.toolbar, data)); },