mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-31 13:40:29 +08:00
Fixed some typos related to _.each loops
This commit is contained in:
parent
d7b86104b8
commit
99f3f5155e
@ -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));
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user