1
Fork 0

copy_path -> window.copy_path + add semicolon

This commit is contained in:
r00ster 2021-04-30 12:06:15 +02:00 committed by GitHub
parent c4fe7c4a30
commit bea99a5da6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1493,7 +1493,7 @@ function hideThemeButtonState() {
(function () {
var reset_button_timeout = null;
function copy_path(but) {
window.copy_path = function(but) {
var parent = but.parentElement;
var path = [];
@ -1527,5 +1527,5 @@ function hideThemeButtonState() {
}
reset_button_timeout = window.setTimeout(reset_button, 1000);
}
};
}());