From 3119f11ba6ecbb8e0ffaeff3cc759d5edb1b8dd1 Mon Sep 17 00:00:00 2001 From: Bussonnier Matthias Date: Sat, 15 Sep 2012 13:37:41 +0200 Subject: [PATCH] change detach icon and tab title --- IPython/frontend/html/notebook/static/js/pager.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/IPython/frontend/html/notebook/static/js/pager.js b/IPython/frontend/html/notebook/static/js/pager.js index 2053f7e11..f7ae40193 100644 --- a/IPython/frontend/html/notebook/static/js/pager.js +++ b/IPython/frontend/html/notebook/static/js/pager.js @@ -53,7 +53,7 @@ var IPython = (function (IPython) { .click(function(){that.detach()}) .attr('style','position: absolute; right: 10px;') .append( - $('').addClass("ui-icon ui-icon-arrowstop-l-n") + $('').addClass("ui-icon ui-icon-extlink") ) ) }; @@ -138,6 +138,9 @@ var IPython = (function (IPython) { .attr('rel',"stylesheet") .attr('href',"/static/css/notebook.css") .attr('type',"text/css") + ) + .append( + $('').text("IPython Pager") ); var pager_body = $(w.document.body) pager_body.attr('style','overflow:scroll');