##// END OF EJS Templates
Fix status ind. icon bug
Jonathan Frederic -
Show More
@@ -267,6 +267,7 b' var IPython = (function (IPython) {'
267 // of codemirror, we wouldn't have to play this game since codemirror
267 // of codemirror, we wouldn't have to play this game since codemirror
268 // wouldn't blur when the completer was shown.
268 // wouldn't blur when the completer was shown.
269 this.cell.edit_mode();
269 this.cell.edit_mode();
270 $([IPython.events]).trigger('edit_mode.Notebook');
270 IPython.keyboard_manager.disable();
271 IPython.keyboard_manager.disable();
271 // Opera sometimes ignores focusing a freshly created node
272 // Opera sometimes ignores focusing a freshly created node
272 if (window.opera) setTimeout(function () {
273 if (window.opera) setTimeout(function () {
@@ -299,6 +300,7 b' var IPython = (function (IPython) {'
299 // of codemirror, we wouldn't have to play this game since codemirror
300 // of codemirror, we wouldn't have to play this game since codemirror
300 // wouldn't blur when the completer was shown.
301 // wouldn't blur when the completer was shown.
301 this.cell.command_mode();
302 this.cell.command_mode();
303 $([IPython.events]).trigger('command_mode.Notebook');
302 IPython.keyboard_manager.enable();
304 IPython.keyboard_manager.enable();
303 };
305 };
304
306
General Comments 0
You need to be logged in to leave comments. Login now