From dcd25caf9a709e90bd4e7b1af3fc799f486974d8 Mon Sep 17 00:00:00 2001 From: "Brian E. Granger" Date: Mon, 15 Aug 2011 14:10:27 -0700 Subject: [PATCH] Adding additional whitespace at botton of notebook for TAB comp. --- IPython/frontend/html/notebook/static/js/notebook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/frontend/html/notebook/static/js/notebook.js b/IPython/frontend/html/notebook/static/js/notebook.js index 4d84117bc..72bd3f895 100644 --- a/IPython/frontend/html/notebook/static/js/notebook.js +++ b/IPython/frontend/html/notebook/static/js/notebook.js @@ -31,7 +31,7 @@ var IPython = (function (IPython) { // i) provide a margin between the last cell and the end of the notebook // ii) to prevent the div from scrolling up when the last cell is being // edited, but is too low on the page, which browsers will do automatically. - this.element.append($('
').height(50)); + this.element.append($('
').height(150)); $('div#notebook').addClass('border-box-sizing'); };