diff --git a/IPython/frontend/html/notebook/static/js/pager.js b/IPython/frontend/html/notebook/static/js/pager.js
index 2053f7e..f7ae401 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');