react-colorful icon indicating copy to clipboard operation
react-colorful copied to clipboard

When my document did not has a head element?

Open zzlb0224 opened this issue 1 year ago • 1 comments

In this funciton

/**
 * Injects CSS code into the document's <head>
 */
export const useStyleSheet = (nodeRef: RefObject<HTMLDivElement>): void => {
        parentDocument.head.appendChild(styleElement);

To

 (parentDocument.head || parentDocument.body || parentDocument.children[0] || parentDocument).appendChild(styleElement);

zzlb0224 avatar Jun 11 '24 08:06 zzlb0224

I use this in Zotero. It based on the firefox 115. The head is null

zzlb0224 avatar Jun 11 '24 08:06 zzlb0224