Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau authored and ellisonbg committed May 31, 2012
1 parent 575409f commit d8639dd
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions IPython/frontend/html/notebook/static/js/tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ var IPython = (function (IPython) {
}
else if( this._consecutive_conter == 3)
{
console.log('should open in pager');
this._old_cell = null ;
this._cancel_stick();
this._old_request = null ;
Expand Down Expand Up @@ -220,12 +219,10 @@ var IPython = (function (IPython) {
// remove_and_cancell_tooltip(true)
Tooltip.prototype.stick = function()
{
console.log('tooltip will stick for at least 10 sec');
var that = this;
this._sticky = true;
this._stick_timeout = setTimeout( function(){
that._sticky = false;
console.log('tooltip will not stick anymore');
}, 10*1000
);
}
Expand Down

0 comments on commit d8639dd

Please sign in to comment.