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 e052d57 commit 20d117cCopy full SHA for 20d117c
dist/show-js-error.esm.js
@@ -6,7 +6,7 @@ function getScreenOrientation() {
6
return typeof screen.orientation === 'string' ? screen.orientation : screen.orientation.type;
7
}
8
function copyTextToClipboard(text) {
9
- var textarea = document.createElement('textarea');
+ const textarea = document.createElement('textarea');
10
textarea.value = text;
11
document.body.appendChild(textarea);
12
try {
0 commit comments