##// END OF EJS Templates
don't show tooltip if object is not found...
MinRK -
Show More
@@ -303,6 +303,10 b' var IPython = (function (IPython) {'
303 // move the bubble if it is not hidden
303 // move the bubble if it is not hidden
304 // otherwise fade it
304 // otherwise fade it
305 var content = reply.content;
305 var content = reply.content;
306 if (!content.found) {
307 // object not found, nothing to show
308 return;
309 }
306 this.name = content.name;
310 this.name = content.name;
307
311
308 // do some math to have the tooltip arrow on more or less on left or right
312 // do some math to have the tooltip arrow on more or less on left or right
General Comments 0
You need to be logged in to leave comments. Login now