We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9657c commit d2b5c22Copy full SHA for d2b5c22
src/modules/popup.ts
@@ -139,6 +139,7 @@ export function buildReaderPopup(
139
140
const makeId = (type: string) =>
141
`${config.addonRef}-${reader._instanceID}-${type}`;
142
+ const onTextAreaCopy = getOnTextAreaCopy(popup, makeId("text"));
143
144
const hidePopupTextarea = getPref("enableHidePopupTextarea") as boolean;
145
append(
@@ -244,6 +245,10 @@ export function buildReaderPopup(
244
245
);
246
},
247
248
+ {
249
+ type: "keydown",
250
+ listener: onTextAreaCopy as (ev: Event) => void,
251
+ },
252
{
253
type: "dblclick",
254
listener: (_ev) => {
0 commit comments