mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-13 13:17:50 +08:00
Fixing infinite recursion.
This commit is contained in:
parent
a576a0c8a1
commit
50213707ea
@ -215,9 +215,10 @@ var IPython = (function (IPython) {
|
||||
};
|
||||
};
|
||||
|
||||
var data = {sync_method: method, sync_data: model.toJSON()};
|
||||
var model_json = model.toJSON();
|
||||
var data = {sync_method: method, sync_data: model_json};
|
||||
comm.send(data, callbacks);
|
||||
return data;
|
||||
return model_json;
|
||||
}
|
||||
|
||||
IPython.WidgetManager = WidgetManager;
|
||||
|
Loading…
Reference in New Issue
Block a user