Fixing bug in KeyboardManager.enable/disable.

This commit is contained in:
Brian E. Granger 2013-12-07 12:12:19 -08:00
parent 9a3783e2c4
commit 18b2e54a52

View File

@ -267,11 +267,11 @@ var IPython = (function (IPython) {
}
KeyboardManager.prototype.enable = function () {
this.enable = true;
this.enabled = true;
}
KeyboardManager.prototype.disable = function () {
this.enable = false;
this.enabled = false;
}