
‘; var menuLoggedOut = ‘\
‘; var backToDiscGolf = ‘\
‘; /* Replace the logged out menu with the logged in if user cookie exists */ if( hasUserCookie ) { jQuery( ‘.js-user-menu’ ).append( menuLoggedIn ); } else { jQuery( ‘.js-user-menu’ ).append( menuLoggedOut ); } /* Replace the top right action links if the user came from UWDG */ if( fromDiscGolf ) { jQuery( ‘.js-action-menu > *:not( .js-user-menu )’ ).remove(); jQuery( ‘.js-action-menu’ ).prepend( backToDiscGolf ); } Original source