Skip to content

Commit

Permalink
Closes #36. Sets the friend page to the default if you're authenticated.
Browse files Browse the repository at this point in the history
  • Loading branch information
JessieAMorris committed May 17, 2013
1 parent e225c74 commit a5d4f8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/js/forever.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ $(document).ready(function() {
CloudOS.retrieveSession();

if (CloudOS.authenticatedSession()) {
Navbar_Show_Auth()
show_view('home-auth')
Navbar_Show_Auth();
page('/friends');
} else {
Navbar_Show_Anon()
Navbar_Show_Anon();
show_view('home');
}

Expand Down

0 comments on commit a5d4f8a

Please sign in to comment.