##// END OF EJS Templates
fix incorrect `empty-docstring`...
MinRK -
Show More
@@ -334,11 +334,14 b' var IPython = (function (IPython) {'
334 if (docstring == null) {
334 if (docstring == null) {
335 docstring = reply.docstring;
335 docstring = reply.docstring;
336 }
336 }
337
337
338 if (docstring == null && this._hide_if_no_docstring) {
338 if (docstring == null) {
339 return;
339 // For reals this time, no docstring
340 } else {
340 if (this._hide_if_no_docstring) {
341 docstring = "<empty docstring>";
341 return;
342 } else {
343 docstring = "<empty docstring>";
344 }
342 }
345 }
343
346
344 this.tooltip.fadeIn('fast');
347 this.tooltip.fadeIn('fast');
General Comments 0
You need to be logged in to leave comments. Login now