()
| 4 | |
| 5 | export default class DropdownBorder extends Dropdown { |
| 6 | constructor() { |
| 7 | const icon = new Icon('border-all'); |
| 8 | const borderPalette = new BorderPalette(); |
| 9 | borderPalette.change = (v) => { |
| 10 | this.change(v); |
| 11 | this.hide(); |
| 12 | }; |
| 13 | super(icon, 'auto', false, 'bottom-left', borderPalette.el); |
| 14 | } |
| 15 | } |