Skip to content

Commit

Permalink
Minor syntax tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Alanaktion committed May 2, 2017
1 parent 1ae134b commit af3a388
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion css/bootstrap-phproject.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions js/backlog.js
Expand Up @@ -28,14 +28,14 @@ function refreshPoints(){
points += val;
}
});
if (points){
$('.panel-head-points',this).show();
}else{
$('.panel-head-points',this).hide();
if (points) {
$('.panel-head-points', this).show();
} else {
$('.panel-head-points', this).hide();
}
$(".points-label", this).text(points);
});
};
}

var Backlog = {
init: function() {
Expand Down

0 comments on commit af3a388

Please sign in to comment.