mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
Merge pull request #4442 from Carreau/fix-oir
finish object_info_request/object_info rename in tooltip
This commit is contained in:
commit
57fa14a2fa
@ -221,11 +221,9 @@ var IPython = (function (IPython) {
|
||||
};
|
||||
|
||||
Tooltip.prototype._request_tooltip = function (cell, line) {
|
||||
var callbacks = { shell : {
|
||||
reply : $.proxy(this._show, this)
|
||||
}};
|
||||
var callbacks = $.proxy(this._show, this);
|
||||
var oir_token = this.extract_oir_token(line);
|
||||
var msg_id = cell.kernel.object_info_request(oir_token, callbacks);
|
||||
var msg_id = cell.kernel.object_info(oir_token, callbacks);
|
||||
};
|
||||
|
||||
// make an imediate completion request
|
||||
|
Loading…
Reference in New Issue
Block a user