##// END OF EJS Templates
Fixing bug in KeyboardManager.enable/disable.
Brian E. Granger -
Show More
@@ -267,11 +267,11 var IPython = (function (IPython) {
267 267 }
268 268
269 269 KeyboardManager.prototype.enable = function () {
270 this.enable = true;
270 this.enabled = true;
271 271 }
272 272
273 273 KeyboardManager.prototype.disable = function () {
274 this.enable = false;
274 this.enabled = false;
275 275 }
276 276
277 277
General Comments 0
You need to be logged in to leave comments. Login now