Skip to content
This repository has been archived by the owner on Jul 23, 2019. It is now read-only.

Commit

Permalink
fix: use full url for redirects (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
edewit authored Oct 16, 2018
1 parent be52635 commit 77a6f99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ngx-launcher/src/lib/model/projectile.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class Projectile<T> {
}

get redirectUrl(): string {
return '/' + window.location.hash + this.toUrl();
return window.location.href + this.toUrl();
}

toUrl(): string {
Expand Down

0 comments on commit 77a6f99

Please sign in to comment.