##// END OF EJS Templates
add missing store_history key to Notebook execute_requests
MinRK -
Show More
@@ -252,7 +252,7 var IPython = (function (IPython) {
252 252 'set_next_input': $.proxy(this._handle_set_next_input, this),
253 253 'input_request': $.proxy(this._handle_input_request, this)
254 254 };
255 var msg_id = this.kernel.execute(this.get_text(), callbacks, {silent: false});
255 var msg_id = this.kernel.execute(this.get_text(), callbacks, {silent: false, store_history: true});
256 256 };
257 257
258 258 /**
@@ -135,7 +135,8 var IPython = (function (IPython) {
135 135 'clear_output': empty,
136 136 'cell': cell
137 137 }, {
138 'silent': false
138 'silent': false,
139 'store_history': true
139 140 });
140 141 this.remove_and_cancel_tooltip();
141 142 }
@@ -300,6 +300,7 var IPython = (function (IPython) {
300 300 var content = {
301 301 code : code,
302 302 silent : true,
303 store_history : false,
303 304 user_variables : [],
304 305 user_expressions : {},
305 306 allow_stdin : false
General Comments 0
You need to be logged in to leave comments. Login now