Commit 81526b56dad2f4197feca0b81caba4905680e72c

Authored by Palak Handa
1 parent 58efec61e2
Exists in master and in 1 other branch paytm

minor change

Showing 2 changed files with 2 additions and 4 deletions   Show diff stats
... ... @@ -663,7 +663,7 @@ stroke-dashoffset:0
663 663 height: 30px;
664 664 position: absolute;
665 665 left: 0px;
666   - margin-top: 4px;
  666 + margin-top: 30px;
667 667 color: #fff;
668 668 text-align: center;
669 669 }
... ...
... ... @@ -224,7 +224,7 @@
224 224 }
225 225  
226 226 $scope.revenuekeyPress = function(team) {
227   - if (team == undefined || team == '') {
  227 + if (team == undefined) {
228 228 $('.icon-circle-n').css('background-color', 'rgb(102, 102, 102)');
229 229 } else {
230 230 $('.icon-circle-n').css('background-color', 'rgb(25, 104, 157)');
... ... @@ -233,10 +233,8 @@
233 233  
234 234 $scope.descriptionkeyPress = function(pitch) {
235 235 if (pitch == undefined) {
236   - console.log("pitch",pitch)
237 236 $('.icon-circle-z').css('background-color', 'rgb(102, 102, 102)');
238 237 } else {
239   - console.log("pitch",pitch)
240 238 $('.icon-circle-z').css('background-color', 'rgb(25, 104, 157)');
241 239 }
242 240 }
... ...