_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Technical 13/Scripts/admin eye.js

In this article we are going to delve into the exciting world of User:Technical 13/Scripts/admin eye.js. From its origins to its influence today, we will explore all facets of User:Technical 13/Scripts/admin eye.js and its impact in various fields. We will analyze its evolution over time, as well as the different perspectives that exist on User:Technical 13/Scripts/admin eye.js. In addition, we will examine its relevance in today's society and its future projection. It doesn't matter if you are an expert in the field or if it is the first time you are hearing about User:Technical 13/Scripts/admin eye.js, this article will offer you a complete and detailed insight into this exciting topic.
$.when( mw.loader.using( 'mediawiki.util' ), $.ready ).then( function() {
	if( $( ".sysop-show" ).length === 0){
		return;
	}
	$( '#p-logo a' ).css({ 'background-image': 'url(//upload.wikimedia.org/wikipedia/commons/9/9c/Wikipedia-logo-v2-admin.svg)', 'background-size': '135px 155px' });
	var listStyle = mw.util.addPortletLink(
		'p-cactions',
		'#',
		'O.o',
		'pt-admin_eye',
		'View page as an admin',
		'a',
		null
	);
	$( listStyle ).click( function ( e ) {
		e.preventDefault();
		/*, 'block' );*/
		$( 'div.sysop-show, p.sysop-show' ).css( 'display', function (i, val) {
			return val === "block" ? "" : "block";
		});
		/*, 'inline' );*/
		$( 'span.sysop-show, small.sysop-show' ).css( 'display', function (i, val) {
			return val === "inline" ? "" : "inline";
		});
		/*, 'table' );*/
		$( 'table.sysop-show' ).css( 'display', function (i, val) {
			return val === "table" ? "" : "table";
		});
		$( 'tr.sysop-show' ).css( 'display', function (i,val){
			return val === "table-row" ? "" : "table-row";
		});
		$( 'th.sysop-show, td.sysop-show' ).css( 'display', function (i, val) {
			return val === "table-cell" ? "" : "table-cell";
		});
		/*, 'list-item' );*/
		$( 'li.sysop-show' ).css( 'display', function (i, val) {
			return val === "list-item" ? "" : "list-item";
		});
		/* Toggle the link */
		$( 'li#pt-admin_eye a' ).html( function (i, val) {
			return val === "O.O" ? "o.o" : "O.O";
		});
		/* Toggle the description */
		$( 'li#pt-admin_eye a' ).attr( 'title', function (i, val) {
			return val === "View page as an admin" ? "View page as a user" : "View page as an admin";
		});
	});
});