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
{{ message }}
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
some certification bodies requires disabling clipboardEvents. I will update this later on with any doc i can share.
This can impact govt and financial institution adoption of element-web (and other clients using this SDK) as it breaks pasting to the div-as-input component here.
Not to mention usability/18n as several niche browsers/extensions/ime input do not work well with that pattern.
you can simulate cases where that feature is not available on firefox, about:config, dom.event.clipboardevents.enabled=false. copy and cut (with preventDefault at the end of the methods) works fine. Only paste is impacted currently.
The text was updated successfully, but these errors were encountered:
@gcb worth noting that simply removing that preventDefault will most likely make the paste look like it worked but then not be in the Composer's internal data model and thus not be part of the message you send. YMMV.
As of Aug 2018, the only skin that exists is vector-im/element-web; it and matrix-org/matrix-react-sdk should effectively be considered as a single project (for instance, matrix-react-sdk bugs are currently filed against vector-im/element-web rather than this project).
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
some certification bodies requires disabling clipboardEvents. I will update this later on with any doc i can share.
This can impact govt and financial institution adoption of element-web (and other clients using this SDK) as it breaks pasting to the div-as-input component here.
Not to mention usability/18n as several niche browsers/extensions/ime input do not work well with that pattern.
you can simulate cases where that feature is not available on firefox, about:config,
dom.event.clipboardevents.enabled=false
. copy and cut (with preventDefault at the end of the methods) works fine. Only paste is impacted currently.The text was updated successfully, but these errors were encountered: