Skip to content

Commit

Permalink
fix(title): clean up titles
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Joseph committed Apr 15, 2016
1 parent 7cd07d3 commit 25ffad4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/home.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class HomeComponent implements OnInit {
return this._router.navigate(['Tracker', { username: this._session.user.username }]);
}

this._title.setTitle('Pokédex Tracker');
this._title.setTitle('Pokédex Tracker | Track the Progress of Your Living Dex Completion');
}

}
2 changes: 1 addition & 1 deletion app/components/tracker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class TrackerComponent implements OnInit {

this._user.retrieve(this._routeParams.get('username'))
.then((user) => {
this._title.setTitle(`${this._routeParams.get('username')}'s Pokédex Tracker`);
this._title.setTitle(`${this._routeParams.get('username')}'s Living Dex | Pokédex Tracker`);

this.user = user;

Expand Down

0 comments on commit 25ffad4

Please sign in to comment.