From a720a141594cfed3479273412758e4fbc5e6cf96 Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 28 Jan 2015 09:17:52 -0800 Subject: [PATCH] fix help-links on Firefox link text must come after icon to layout properly on Firefox this makes help links from the kernel match those already populated from the template --- IPython/html/static/notebook/js/menubar.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/IPython/html/static/notebook/js/menubar.js b/IPython/html/static/notebook/js/menubar.js index c65d33da9..270ba3852 100644 --- a/IPython/html/static/notebook/js/menubar.js +++ b/IPython/html/static/notebook/js/menubar.js @@ -394,10 +394,12 @@ define([ .attr('target', '_blank') .attr('title', 'Opens in a new window') .attr('href', link.url) - .text(link.text) .append($("") .addClass("fa fa-external-link menu-icon pull-right") ) + .append($("") + .text(link.text) + ) ) ); cursor = cursor.next();