Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaRadzhabova committed Mar 28, 2024
1 parent 72e5fe4 commit 5a1f1ce
Showing 1 changed file with 0 additions and 142 deletions.
142 changes: 0 additions & 142 deletions apps/documenteditor/main/app/controller/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]",
// "active": "http://127.0.0.1:8000/sdkjs-plugins/chatgpt/resources/dark/[email protected]"
// }
// },
// {
// "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/[email protected]"
// }
// },
// {
// "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/[email protected]"
// }
// }
// ];
// 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));
},

Expand Down

0 comments on commit 5a1f1ce

Please sign in to comment.