/** * Displays an alert for anonymous users at the top of pages marked 'public' * instructing them to log in. Example alert: "Notice: You are browsing this * site anonymously, and only have access to a portion of its content." */ /* global document, auth */ ( function( $ ) { $( document ).ready( function() { $( '#main' ).prepend( '
' + '' + auth.anonymousNotice + '' + auth.logIn + '' + '
' ); } ); } )( jQuery );