Merge pull request #4442 from Carreau/fix-oir

finish object_info_request/object_info rename in tooltip
This commit is contained in:
Min RK 2013-10-26 11:04:22 -07:00
commit 57fa14a2fa

View File

@ -221,11 +221,9 @@ var IPython = (function (IPython) {
}; };
Tooltip.prototype._request_tooltip = function (cell, line) { Tooltip.prototype._request_tooltip = function (cell, line) {
var callbacks = { shell : { var callbacks = $.proxy(this._show, this);
reply : $.proxy(this._show, this)
}};
var oir_token = this.extract_oir_token(line); 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 // make an imediate completion request