/** * 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() { auth.wpLoginUrl = 'undefined' !== typeof auth.wpLoginUrl ? auth.wpLoginUrl : '/wp-login.php'; auth.publicWarning = 'undefined' !== typeof auth.publicWarning ? auth.publicWarning : false; if ( auth.publicWarning ) { $( '#main' ).prepend(' \
\ \ ' + auth.anonymousNotice + ' \ ' + auth.logIn + ' \
\ '); } }); } )( jQuery );