Honest-Objections
Results
2
comments of
Honest-Objections
My issue was also on Linux Mint 18.1, worth noting the kernel still installed
Remove ```mdc-dialog__footer__button--accept``` from the buttons: ``` @yield('button_left', 'Cancel') @yield('button_right', 'Submit') ``` Then when you initialise, add ```onclick```s: ``` const dialogElement = document.querySelector('#my-mdc-dialog'); const dialog = new MDCDialog(dialogElement); dialog.show(); dialogElement.querySelector('#dialog-cancel').onclick =...