Skip to content

Commit 115bde2

Browse files
committed
Fix the prompt_area argument of the output area constructor.
See jupyter#2681 (comment) and jupyter-widgets/ipywidgets#1765
1 parent c888b6a commit 115bde2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

notebook/static/notebook/js/outputarea.js

+3
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ define([
7777

7878
OutputArea.prototype.style = function () {
7979
this.collapse_button.hide();
80+
if (!this.prompt_area) {
81+
this.prompt_overlay.hide();
82+
}
8083

8184
this.wrapper.addClass('output_wrapper');
8285
this.element.addClass('output');

0 commit comments

Comments
 (0)