Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Mar 27, 2019
1 parent c80153f commit 014ddcd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/assets/v2/js/pages/new_bounty.js
Original file line number Diff line number Diff line change
Expand Up @@ -593,9 +593,10 @@ $(document).ready(function() {

if ($("input[type='radio'][name='repo_type']:checked").val() == 'private' && $('#issueNDA')[0].files[0]) {
uploadNDA();
} else if (data.featuredBounty) {
payFeaturedBounty();
} else {
if (data.featuredBounty) payFeaturedBounty();
else do_bounty();
do_bounty();
}
}
});
Expand Down

0 comments on commit 014ddcd

Please sign in to comment.