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