Commit 81526b56dad2f4197feca0b81caba4905680e72c
1 parent
58efec61e2
Exists in
master
and in
1 other branch
minor change
Showing
2 changed files
with
2 additions
and
4 deletions
Show diff stats
css/custom.css
script.js
... | ... | @@ -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 | } | ... | ... |