diff --git a/IPython/html/static/notebook/js/kernelselector.js b/IPython/html/static/notebook/js/kernelselector.js index 46d4882..bf78b7c 100644 --- a/IPython/html/static/notebook/js/kernelselector.js +++ b/IPython/html/static/notebook/js/kernelselector.js @@ -85,6 +85,7 @@ define([ this.events.on('spec_changed.Kernel', function(event, data) { that.current_selection = data.name; that.element.find("#current_kernel_spec").find('.kernel_name').text(data.display_name); + that.element.find("#current_kernel_logo").attr("src", "/kernelspecs/"+data.name+"/logo-32.png"); }); this.events.on('kernel_created.Session', function(event, data) { diff --git a/IPython/html/templates/notebook.html b/IPython/html/templates/notebook.html index 3cf4b0e..45787a6 100644 --- a/IPython/html/templates/notebook.html +++ b/IPython/html/templates/notebook.html @@ -42,6 +42,7 @@ class="notebook_app" +