Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion src/librustdoc/html/static/js/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Local js definitions:
/* global addClass, getSettingValue, hasClass, updateLocalStorage */
/* global onEachLazy, removeClass, getVar */
/* global onEachLazy, removeClass, getVar, nonnull */

"use strict";

Expand Down Expand Up @@ -2138,3 +2138,31 @@ function preLoadCss(cssUrl) {
elem.addEventListener("click", showHideCodeExampleButtons);
});
}());

// This section is a bugfix for firefox: when copying text with `user-select: none`, it adds
// extra backline characters.
//
// Rustdoc issue: Workaround for https://github.com/rust-lang/rust/issues/141464
// Firefox issue: https://bugzilla.mozilla.org/show_bug.cgi?id=1273836
(function() {
document.body.addEventListener("copy", event => {
let target = nonnull(event.target);
let isInsideCode = false;
while (target && target !== document.body) {
// @ts-expect-error
if (target.tagName === "CODE") {
isInsideCode = true;
break;
}
// @ts-expect-error
target = target.parentElement;
}
if (!isInsideCode) {
return;
}
const selection = document.getSelection();
// @ts-expect-error
nonnull(event.clipboardData).setData("text/plain", selection.toString());
event.preventDefault();
});
}());
Loading