Fixed some typos related to _.each loops

This commit is contained in:
Jonathan Frederic 2014-01-21 17:23:12 -08:00
parent d7b86104b8
commit 99f3f5155e
2 changed files with 5 additions and 4 deletions

View File

@ -37,8 +37,9 @@
this._models = {}; /* Dictionary of model ids and model instances */
// Register already-registered widget model types with the comm manager.
var that = this;
_.each(WidgetManager._model_types, function(value, key) {
this.comm_manager.register_target(value, $.proxy(this._handle_comm_open, this));
that.comm_manager.register_target(value, $.proxy(that._handle_comm_open, that));
});
};

View File

@ -172,7 +172,7 @@ define(["notebook/js/widgets/widget"], function(WidgetManager){
_.each(items, function(item, index) {
if (item == value) {
found = true;
break;
return false;
}
});
@ -257,7 +257,7 @@ define(["notebook/js/widgets/widget"], function(WidgetManager){
_.each(items, function(item, index) {
if (item == value) {
found = true;
break;
return false;
}
});
@ -339,7 +339,7 @@ define(["notebook/js/widgets/widget"], function(WidgetManager){
_.each(items, function(item, index) {
if (item == value) {
found = true;
break;
return false;
}
});