Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/src/main/assets/from_ipython/static/js/codecell.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var IPython = (function (IPython) {
this.tooltip_timeout = null;
this.clear_out_timeout = null;
this.tooltip = null;
this.hideInputOnResult = true;
this.hideInputOnResult = false;
this.notebook = notebook;
IPython.Cell.apply(this, arguments);
};
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/assets/from_ipython/static/js/notebook.js
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ var IPython = (function (IPython) {
// add_new: should a new cell be added if we are at the end of the nb
// terminal: execute in terminal mode, which stays in the current cell
// hideInput: true to hide input when execution completes
default_options = {terminal: false, add_new: true, hideInput: true};
default_options = {terminal: false, add_new: true, hideInput: false};
$.extend(default_options, options);
var that = this;
var cell = this.get_selected_cell();
Expand Down