Skip to content

Disable hiding input on evaluating a cell. #58

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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