1
Fork 0

Copy item path rather than full use statement.

This commit is contained in:
moxian 2021-07-16 03:45:27 +00:00
parent b1f8e27b74
commit 81d792f31d
2 changed files with 3 additions and 4 deletions

View file

@ -985,7 +985,7 @@ function hideThemeButtonState() {
});
var el = document.createElement('textarea');
el.value = 'use ' + path.join('::') + ';';
el.value = path.join('::');
el.setAttribute('readonly', '');
// To not make it appear on the screen.
el.style.position = 'absolute';