diff --git a/client/js/clipboard.js b/client/js/clipboard.js index da33b646..a2db3586 100644 --- a/client/js/clipboard.js +++ b/client/js/clipboard.js @@ -1,6 +1,11 @@ "use strict"; module.exports = function(chat) { + // Disable in Firefox as it already copies flex text correctly + if (typeof window.InstallTrigger !== "undefined") { + return; + } + const selection = window.getSelection(); // If selection does not span multiple elements, do nothing