You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On click on any select using Chrome under MacOS there is a bug that doesn't allow a user to select any option. Dropdown is closed instead immediately.
As a solution you may change Event.on(this.selectElement, 'click', function (event) { self.onTrigger(event); });
in file rtehtmlarea/Resources/Public/JavaScript/HTMLArea/Toolbar/Select.js:103
to Event.on(this.selectElement, 'change', function (event) { self.onTrigger(event); });
The text was updated successfully, but these errors were encountered:
etobi
added a commit
to etobi/rtehtmlarea
that referenced
this issue
Jan 12, 2018
On click on any select using Chrome under MacOS there is a bug that doesn't allow a user to select any option. Dropdown is closed instead immediately.
As a solution you may change
Event.on(this.selectElement, 'click', function (event) { self.onTrigger(event); });
in file rtehtmlarea/Resources/Public/JavaScript/HTMLArea/Toolbar/Select.js:103
to
Event.on(this.selectElement, 'change', function (event) { self.onTrigger(event); });
The text was updated successfully, but these errors were encountered: