mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
Click instead of mouseup
This commit is contained in:
parent
8e5601370a
commit
40cf1ab912
@ -164,7 +164,7 @@ define([
|
||||
var run_this_cell = $('<div></div>').addClass('run_this_cell');
|
||||
run_this_cell.prop('title', 'Run this cell');
|
||||
run_this_cell.append('<i class="fa-step-forward fa"></i>');
|
||||
run_this_cell.mouseup(function (event) {
|
||||
run_this_cell.click(function (event) {
|
||||
event.stopImmediatePropagation();
|
||||
that.execute();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user