Click instead of mouseup

This commit is contained in:
Lucas Oshiro 2018-05-22 12:56:16 -03:00
parent 8e5601370a
commit 40cf1ab912

View File

@ -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();
});