From 3af8f8a136bc4b4ef3435a65d316715d25248968 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 18 Jul 2013 19:52:06 +0530 Subject: [PATCH] [minor] [erpnext logo] load it as object instead of image --- public/js/conf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/conf.js b/public/js/conf.js index 11b0dc6075..22e80c98d8 100644 --- a/public/js/conf.js +++ b/public/js/conf.js @@ -17,7 +17,7 @@ wn.modules_path = 'erpnext'; $(document).bind('toolbar_setup', function() { $('.navbar-brand').html('
\ \ -
' + (wn.boot.website_settings.brand_html || 'erpnext')) + ' + ($("
").append(wn.boot.website_settings.brand_html).text() || 'erpnext')) .addClass("navbar-icon-home") .css('max-width', '200px').css('overflow', 'hidden'); });