Skip to content

Commit

Permalink
Use type safe comparing
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Aug 5, 2016
1 parent 27b3836 commit 95391a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pmaweb/static/js/loader.js
Expand Up @@ -70,7 +70,7 @@ $(function(){
$('#dl-link').attr('href', $this.attr('href'));
$('#dl-sha1').text($this.data('sha1'));
$('#dl-sha256').text($this.data('sha256'));
if (pgp != '') {
if (pgp !== '') {
$('#dl-li-pgp').show();
$('#dl-pgp').attr('href', pgp);
} else {
Expand Down

0 comments on commit 95391a0

Please sign in to comment.