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