From d7b42270eef7eee7fb14677dbd2e0000fe7f4295 Mon Sep 17 00:00:00 2001 From: Matthias BUSSONNIER Date: Fri, 30 Mar 2012 12:07:14 +0200 Subject: [PATCH] remove console.log --- IPython/frontend/html/notebook/static/js/tooltip.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/IPython/frontend/html/notebook/static/js/tooltip.js b/IPython/frontend/html/notebook/static/js/tooltip.js index 990abe47d..fb9fde09b 100644 --- a/IPython/frontend/html/notebook/static/js/tooltip.js +++ b/IPython/frontend/html/notebook/static/js/tooltip.js @@ -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 ; @@ -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 ); }