Skip to content

Commit

Permalink
update JSDoc comment. Remove trailing space (#1872)
Browse files Browse the repository at this point in the history
tests were failing due to no trailing space eslint rule.
  • Loading branch information
bansawbanchee authored and Matt Kendall committed Nov 22, 2017
1 parent 5276f70 commit 2094ea4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -794,10 +794,10 @@ export function getBidderRequest(bidRequests, bidder, adUnitCode) {
}

/**
* Returns the origin
* Returns the origin
*/
export function getOrigin() {
// IE10 does not have this propery. https://gist.github.com/hbogs/7908703
// IE10 does not have this property. https://gist.github.com/hbogs/7908703
if (!window.location.origin) {
return window.location.protocol + '//' + window.location.hostname + (window.location.port ? ':' + window.location.port : '');
} else {
Expand Down

0 comments on commit 2094ea4

Please sign in to comment.