##// END OF EJS Templates
dblclick/double click for humans
MinRK -
Show More
@@ -54,7 +54,7 b' var IPython = (function (IPython) {'
54 this.collapse_button.html('. . .');
54 this.collapse_button.html('. . .');
55
55
56 this.prompt_overlay.addClass('out_prompt_overlay prompt');
56 this.prompt_overlay.addClass('out_prompt_overlay prompt');
57 this.prompt_overlay.attr('title', 'click to expand outout; dblclick to hide output');
57 this.prompt_overlay.attr('title', 'click to expand outout; double click to hide output');
58
58
59 this.collapse();
59 this.collapse();
60 };
60 };
@@ -128,14 +128,14 b' var IPython = (function (IPython) {'
128
128
129 OutputArea.prototype.scroll_area = function () {
129 OutputArea.prototype.scroll_area = function () {
130 this.element.addClass('output_scroll');
130 this.element.addClass('output_scroll');
131 this.prompt_overlay.attr('title', 'click to unscroll output; dblclick to hide');
131 this.prompt_overlay.attr('title', 'click to unscroll output; double click to hide');
132 this.scrolled = true;
132 this.scrolled = true;
133 };
133 };
134
134
135
135
136 OutputArea.prototype.unscroll_area = function () {
136 OutputArea.prototype.unscroll_area = function () {
137 this.element.removeClass('output_scroll');
137 this.element.removeClass('output_scroll');
138 this.prompt_overlay.attr('title', 'click to scroll output; dblclick to hide');
138 this.prompt_overlay.attr('title', 'click to scroll output; double click to hide');
139 this.scrolled = false;
139 this.scrolled = false;
140 };
140 };
141
141
General Comments 0
You need to be logged in to leave comments. Login now