add missing store_history key to Notebook execute_requests

pull/37/head
MinRK 13 years ago
parent 50fba9453e
commit 9845ba1416

@ -252,7 +252,7 @@ var IPython = (function (IPython) {
'set_next_input': $.proxy(this._handle_set_next_input, this),
'input_request': $.proxy(this._handle_input_request, this)
};
var msg_id = this.kernel.execute(this.get_text(), callbacks, {silent: false});
var msg_id = this.kernel.execute(this.get_text(), callbacks, {silent: false, store_history: true});
};
/**

@ -135,7 +135,8 @@ var IPython = (function (IPython) {
'clear_output': empty,
'cell': cell
}, {
'silent': false
'silent': false,
'store_history': true
});
this.remove_and_cancel_tooltip();
}

@ -300,6 +300,7 @@ var IPython = (function (IPython) {
var content = {
code : code,
silent : true,
store_history : false,
user_variables : [],
user_expressions : {},
allow_stdin : false

Loading…
Cancel
Save