diff --git a/notebook/static/services/config.js b/notebook/static/services/config.js index f4b6cb802..fbf0f6bc0 100644 --- a/notebook/static/services/config.js +++ b/notebook/static/services/config.js @@ -93,7 +93,7 @@ function($, utils) { ConfigWithDefaults.prototype.get = function(key) { var that = this; return this.section.loaded.then(function() { - return this._class_data()[key] || this.defaults[key] + return that._class_data()[key] || that.defaults[key] }); };