Cp-s05box Wiki
Advertisement
Wall of Fame
The Wall of Fame has been instituted as special recognition to any user who has made the Cp-s05box Wiki a great website to visit.
Click a user's name to display the reason for his place in the Wall of Fame. ( show | hide | toggle )
  • Dps04
    A friendly user, always hels around and a great designer!
  • Dps05
    A friendly user, always hels around and a great designer!
  • Dps06
    A friendly user, always hels around and a great designer!
  • Dps07
    A friendly user, always hels around and a great designer!
Is there someone that you think should be up here? Ask an admin for approval, and if they say yes, you can add them to this page!

Resources[]

  • Toggling script (MediaWiki:Common.js- added before the WoF table)
    $(document).ready(function() {
    	$("body.page-Uuff .wiki-wof-list li dl").hide();
    	$("body.page-Uuff .wiki-wof-list li > div").mousedown(function() {
    		$(this).next().slideToggle(200);
    	});
    	$("body.page-Uuff .wiki-wof-features span:nth-child(1)").click(function() {
    		$("body.page-Uuff .wiki-wof-list li dl").show(200);
    	});
    	$("body.page-Uuff .wiki-wof-features span:nth-child(2)").click(function() {
    		$("body.page-Uuff .wiki-wof-list li dl").hide(200);
    	});
    	$("body.page-Uuff .wiki-wof-features span:nth-child(3)").click(function() {
    		$("body.page-Uuff .wiki-wof-list li dl").slideToggle(200);
    	});
    });
    
  • Disable toggling for IE 8 and older (MediaWiki:WoF)
    <div style="display: none;">
    <!-- no support in IE 8 or older -->
    <!--[if lte IE 8]>
    <style type="text/css">
    	body.page-Uuff .wiki-wof-list li dl {
    		display: block !important;
    	}
    	body.page-Uuff tr.wiki-wof-modern-browser {
    		display: none;
    	}
    </style>
    <![endif]-->
    </div>
    
Advertisement