From adf60dd1e2e12e08fc31b8ec39a3b6dac161f770 Mon Sep 17 00:00:00 2001 From: Natalie Perna Date: Wed, 15 Jun 2016 15:39:06 -0400 Subject: [PATCH] Pick completion option with single- rather than double-click. --- notebook/static/notebook/js/completer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/static/notebook/js/completer.js b/notebook/static/notebook/js/completer.js index 4a10965a0..4bd99d854 100644 --- a/notebook/static/notebook/js/completer.js +++ b/notebook/static/notebook/js/completer.js @@ -253,7 +253,7 @@ define([ //build the container var that = this; - this.sel.dblclick(function () { + this.sel.click(function () { that.pick(); }); this._handle_keydown = function (cm, event) {