Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 5b511c0

Browse files
committed
Use mouseup instead of click on delete button
1 parent 9fa5c68 commit 5b511c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/extensions/default/RecentProjects

src/extensions/default/RecentProjects/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ define(function (require, exports, module) {
103103
*/
104104
function renderDelete() {
105105
return $("<div id='recent-folder-delete' class='trash-icon'></div>")
106-
.click(function (e) {
106+
.mouseup(function (e) {
107107
// Don't let the click bubble upward.
108108
e.stopPropagation();
109109

0 commit comments

Comments
 (0)