##// END OF EJS Templates
Update boolean tests
Takeshi Kanmae -
Show More
@@ -167,8 +167,8 b' var IPython = (function (IPython) {'
167 // note that we don't handle closing directly inside the calltip
167 // note that we don't handle closing directly inside the calltip
168 // as in the completer, because it is not focusable, so won't
168 // as in the completer, because it is not focusable, so won't
169 // get the event.
169 // get the event.
170 if (this._hidden === false) {
170 if (!this._hidden) {
171 if (this._sticky == false || force == true) {
171 if (force || !this._sticky) {
172 this.cancel_stick();
172 this.cancel_stick();
173 this._hide();
173 this._hide();
174 }
174 }
General Comments 0
You need to be logged in to leave comments. Login now