From f5a3a86ba0701f828506a4a7ae3c74ba276b1440 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 18 Sep 2017 14:38:24 +0300 Subject: [PATCH] Fix Bug 35860. --- apps/common/main/lib/view/Header.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index dc619af1f..8feba516e 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -377,6 +377,12 @@ define([ if ( role == 'left' && (!config || !config.isDesktopApp)) { $html = $(templateLeftBox); this.logo = $html.find('#header-logo'); + + if (this.branding && this.branding.logo && this.branding.logo.image && this.logo) { + this.logo.html(''); + this.logo.css({'background-image': 'none', width: 'auto'}); + } + return $html; } else if ( role == 'right' ) {