change color for sidebar

This commit is contained in:
bechi 2015-05-08 18:27:27 -03:00
commit 7827d33f5a
4 changed files with 19 additions and 22 deletions

View file

@ -124,7 +124,6 @@ angular.module('copayApp.controllers').controller('indexController', function($r
var old = document.getElementById('menu-' + self.tab);
if (old) {
old.className = '';
old.style.borderTopColor = '';
}
}
@ -133,7 +132,6 @@ angular.module('copayApp.controllers').controller('indexController', function($r
var newe = document.getElementById('menu-' + tab);
if (newe) {
newe.className = 'active';
newe.style.borderTopColor = self.backgroundColor;
}
}