##// END OF EJS Templates
edit text cells on double-click instead of single-click...
MinRK -
Show More
@@ -89,7 +89,7 b' var IPython = (function (IPython) {'
89 TextCell.prototype.config_mathjax = function () {
89 TextCell.prototype.config_mathjax = function () {
90 var text_cell = this.element;
90 var text_cell = this.element;
91 var that = this;
91 var that = this;
92 text_cell.click(function () {
92 text_cell.dblclick(function () {
93 that.edit();
93 that.edit();
94 }).focusout(function () {
94 }).focusout(function () {
95 that.render();
95 that.render();
General Comments 0
You need to be logged in to leave comments. Login now