diff --git a/css/custom.css b/css/custom.css index 3e9cab0..45430ae 100644 --- a/css/custom.css +++ b/css/custom.css @@ -663,7 +663,7 @@ stroke-dashoffset:0 height: 30px; position: absolute; left: 0px; - margin-top: 4px; + margin-top: 30px; color: #fff; text-align: center; } diff --git a/script.js b/script.js index ca380cb..20f8f77 100644 --- a/script.js +++ b/script.js @@ -224,7 +224,7 @@ } $scope.revenuekeyPress = function(team) { - if (team == undefined || team == '') { + if (team == undefined) { $('.icon-circle-n').css('background-color', 'rgb(102, 102, 102)'); } else { $('.icon-circle-n').css('background-color', 'rgb(25, 104, 157)'); @@ -233,10 +233,8 @@ $scope.descriptionkeyPress = function(pitch) { if (pitch == undefined) { - console.log("pitch",pitch) $('.icon-circle-z').css('background-color', 'rgb(102, 102, 102)'); } else { - console.log("pitch",pitch) $('.icon-circle-z').css('background-color', 'rgb(25, 104, 157)'); } }