From a64a0c4a337085634f6df37d7bf1475cb3be2c5f Mon Sep 17 00:00:00 2001 From: Maxime Roux Date: Fri, 27 Mar 2015 15:51:30 -0700 Subject: [PATCH] UI-1320: fixed a bug in SmartPBX where the dashboard tab was not automatically highlighted at the loading of the app --- app.js | 2 +- style/app.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app.js b/app.js index 5761161..e3775eb 100644 --- a/app.js +++ b/app.js @@ -42,7 +42,7 @@ define(function(require){ template = $(monster.template(self, 'app')); /* On first Load, load my office */ - template.find('.category#my_office').addClass('active'); + template.find('.category#myOffice').addClass('active'); monster.pub('voip.myOffice.render', { parent: template.find('.right-content') }); self.bindEvents(template); diff --git a/style/app.css b/style/app.css index b5f5f05..e23ddff 100644 --- a/style/app.css +++ b/style/app.css @@ -8,7 +8,7 @@ @import url('../submodules/featureCodes/featureCodes.css'); @import url('../submodules/vmboxes/vmboxes.css'); -#voip_container .left-menu #my_office { +#voip_container .left-menu #myOffice { margin-bottom: 20px; }