##// END OF EJS Templates
Merge pull request #4442 from Carreau/fix-oir...
Min RK -
r13331:7453734f merge
parent child Browse files
Show More
@@ -0,0 +1,2 b''
1 * ``object_info_request`` as been replaced by ``object_info`` for consistency in the javascript API.
2 ``object_info`` as a simpler interface to register callback that is incompatible with ``object_info_request``.
@@ -221,11 +221,9 b' var IPython = (function (IPython) {'
221 221 };
222 222
223 223 Tooltip.prototype._request_tooltip = function (cell, line) {
224 var callbacks = { shell : {
225 reply : $.proxy(this._show, this)
226 }};
224 var callbacks = $.proxy(this._show, this);
227 225 var oir_token = this.extract_oir_token(line);
228 var msg_id = cell.kernel.object_info_request(oir_token, callbacks);
226 var msg_id = cell.kernel.object_info(oir_token, callbacks);
229 227 };
230 228
231 229 // make an imediate completion request
General Comments 0
You need to be logged in to leave comments. Login now