Tune control displayed in block tunes popover
()
| 255 | |
| 256 | /** Tune control displayed in block tunes popover */ |
| 257 | public render(): HTMLElement { |
| 258 | const button = document.createElement('button'); |
| 259 | |
| 260 | button.classList.add('ce-settings__button'); |
| 261 | button.innerText = 'Tune'; |
| 262 | |
| 263 | return button; |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | /** Create editor instance */ |