function customizeViews(editor) { const panelManager = editor.Panels; // Views button manager panelManager.getButton('views', 'open-sm').set({ id: "open-sm", className: 'gjs-pn-btn', command: "open-sm", active: true, attributes: { title: "Open Style Manager" }, label: `` }); panelManager.getButton('views', 'open-tm').set({ id: "open-tm", className: 'gjs-pn-btn', command: "open-tm", active: false, attributes: { title: "Open Settings" }, label: `` }); panelManager.getButton('views', 'open-layers').set({ id: "open-layers", className: 'gjs-pn-btn', command: "open-layers", active: false, attributes: { title: "Open Layers" }, label: `` }); panelManager.getButton('views', 'open-blocks').set({ id: "open-blocks", className: 'gjs-pn-btn', command: "open-blocks", active: false, attributes: { title: "Open Blocks" }, label: `` }); }