Fixing pager Javascript

This commit is contained in:
Andrew Gibiansky 2015-03-03 14:18:37 -08:00
parent f0ab46685a
commit b2dfd0e48f

View File

@ -10,7 +10,6 @@ define(['require',
var onload = function(){
console.log('Kernel haskell kernel.js is loading.');
events.on('app_initialized.NotebookApp', function(){
// add here logic that shoudl be run once per **page load**
// like adding specific UI, or changing the default value
// of codecell highlight.
@ -57,7 +56,6 @@ define(['require',
IPython.Pager.prototype.append_text = function (text) {
this.pager_element.find(".container").append($('<div/>').html(IPython.utils.autoLinkUrls(text)));
};
});
events.on('shell_reply.Kernel', function() {
// Add logic here that should be run once per reply.