Skip to content

Commit e2af42d

Browse files
committed
switch default behavior to always rename
1 parent 9e44f9b commit e2af42d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/js/requests.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,8 +1155,7 @@ var click = function (e) {
11551155
if (longpress) {
11561156
return false;
11571157
}
1158-
1159-
copySelectedToClipboard();
1158+
document.getElementById("renamer-overlay").classList.add("show");
11601159
};
11611160

11621161
var start = function (e) {
@@ -1173,7 +1172,7 @@ var start = function (e) {
11731172

11741173
if (presstimer === null) {
11751174
presstimer = setTimeout(function () {
1176-
document.getElementById("renamer-overlay").classList.add("show");
1175+
copySelectedToClipboard();
11771176
longpress = true;
11781177
}, 500);
11791178
}

0 commit comments

Comments
 (0)