Skip to content

Commit

Permalink
Merge pull request #157 from bullhorn/f/typo-correct
Browse files Browse the repository at this point in the history
Typo update and update hyperlink
  • Loading branch information
acrowe2 authored Aug 7, 2017
2 parents b6bf5e4 + 5abdd61 commit 28622b1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/detail/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{{::detail.job.address.city}}<span data-ng-if="::(detail.job.address.city && detail.job.address.state)">,&nbsp;</span>{{::detail.job.address.state}}
</span>
<!-- SEPARATOR -->
<span class="card-separator" data-ng-show="::((detail.job.address.city || detail.job.address.state) && detail.job.employmentType)">|</span>
<span class="card-separator" data-ng-show="::((detail.job.address.city || detail.job.address.state) && detail.job.employmentType)"> | </span>
<!-- JOB TYPE -->
<span class="card-type">{{::detail.job.employmentType}}</span>
<!-- APPLY WITH LINKED IN || EMAIL JOB -->
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/share.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ShareService {
additionalEmailInfo: job => '?subject=' + encodeURIComponent(job.title) + '&body=' + this.description(job, window.location.href) + this.additionalEmailInfo(job),
facebook: () => '?display=popup&app_id=' + this.config.keys.facebook + '&href=' + encodeURIComponent(window.location.href) + '&redirect_uri=' + encodeURIComponent('https://www.facebook.com/'),
twitter: job => '?text=' + encodeURIComponent(this.description(job)) + '&url=' + encodeURIComponent(window.location.href),
linkedin: job => '?mini=true&source=Bullhorn%20Carrer%20Portal&title=' + encodeURIComponent(this.description(job)) + '&url=' + encodeURIComponent(window.location.href),
linkedin: job => '?mini=true&source=Bullhorn%20Career%20Portal&title=' + encodeURIComponent(this.description(job)) + '&url=' + encodeURIComponent(window.location.href),
email: job => '?subject=' + encodeURIComponent(job.title) + '&body=' + this.description(job, window.location.href)
});
}
Expand Down
4 changes: 3 additions & 1 deletion src/app/sidebar/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ <h4>{{'common.categorySectionHeading' | i18n}}</h4>

<section class="credits">
<span class="powered-by">{{'sidebar.poweredByText' | i18n}}</span>
<img class="bullhorn" src="assets/images/logo.svg"></img>
<a target="_blank" href="http://www.bullhorn.com/">
<img class="bullhorn" src="assets/images/logo.svg"></img>
</a>
</section>

<button type="button" class="bhi-arrow-left" name="back-arrow" data-ng-click="sidebar.goBack();"></button>
Expand Down

0 comments on commit 28622b1

Please sign in to comment.