Do not set dir if not rtl

This commit is contained in:
Hongbo Wu
2024-03-04 13:33:06 +08:00
parent 24cec85880
commit 7cd69da8b8

View File

@ -150,7 +150,7 @@
* capture them separately and concatenate them here with head and body tags
* preserved.
*/
const contentCopyHtml = `<html dir="${dir}"><head>${document.head.innerHTML}</head><body>${contentCopyEl.innerHTML}</body></html>`
const contentCopyHtml = `<html ${dir.toLowerCase() === 'rtl' ? 'dir="rtl"': ''}><head>${document.head.innerHTML}</head><body>${contentCopyEl.innerHTML}</body></html>`
// Cleaning up the copy element
contentCopyEl.remove()
return contentCopyHtml