Skip to content

Commit

Permalink
fix: put hash before query in url
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasthiebaud committed Jul 3, 2018
1 parent 36fff80 commit 086358e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/splittest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ export class SplitTest {
'//' +
location.host +
location.pathname +
qs.stringify(query, true) +
location.hash
location.hash +
qs.stringify(query, true)
);
} catch (e) {
return location.href;
Expand Down

0 comments on commit 086358e

Please sign in to comment.