Skip to content

Commit 40cf1ab

Browse files
committed
Click instead of mouseup
1 parent 8e56013 commit 40cf1ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebook/static/notebook/js/codecell.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ define([
164164
var run_this_cell = $('<div></div>').addClass('run_this_cell');
165165
run_this_cell.prop('title', 'Run this cell');
166166
run_this_cell.append('<i class="fa-step-forward fa"></i>');
167-
run_this_cell.mouseup(function (event) {
167+
run_this_cell.click(function (event) {
168168
event.stopImmediatePropagation();
169169
that.execute();
170170
});

0 commit comments

Comments
 (0)