From StrategyWiki, the video game walkthrough and strategy guide wiki
< User:Inarius
Revision as of 07:39, 19 October 2006 by Inarius (talk | contribs)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
// [[User:Lupin/popups.js]]

document.write('<script type="text/javascript" src="http://en.wikipedia.org/w/index.php?title=User:Lupin/popups.js&action=raw&ctype=text/javascript&dontcountme=s"></script>');

simplePopups=false;
popupAdminLinks=true;
popupStructure='menus';
popupFixRedirs=true;
popupFixDabs=true;
popupPreviewFirstParOnly=false;
popupExtraUserMenu=true;
popupUseQueryInterface = false;
function siteArticlePath(){ return 'wiki'; }
function siteBotInterfacePath(){ return 'w'; }

// Appends any #nav_toc_append > .nav_toc to #nav_right
// Moves any existing #nav_toc to #nav_right
function domNavToc()
{
	//var errNode  = document.createTextNode( "No Sidebar" ); 
	var navRight = document.getElementById( 'nav_right' );

	if( !navRight ) {
		return 0;
	}
	
	// Append all .nav_toc classed elements under #nav_toc_append
	var navTocAppend = document.getElementById( 'nav_toc_append' );
	if( navTocAppend ) {
alert('navTocAppend = true');
//	while (node.hasChildNodes())
//	{
//	  node.removeChild(node.firstChild);
//	}
		var len = navTocAppend.childNodes.length;
		for(var i = 0; i < len; i++)
		{
alert('for: ' + i);
			var thisNavToc = navTocAppend.childNodes[i];
alert('1');
			//not the right way to do this
			if(thisNavToc.className == 'nav_toc')
			{
				var thisNavTocClone = thisNavToc.cloneNode(true);
alert('2');
				thisNavToc.parentNode.removeChild(thisNavToc);
alert('3');
				navRight.appendChild( thisNavTocClone );
alert('4');
				if(thisNavTocClone.style.display) {thisNavTocClone.style.display = 'block';}
				if(thisNavTocClone.visibility) {thisNavTocClone.visibility = 'visible';}
alert('5');
			}
		}
	}

	// Append errNode if navToc doesn't exist
	var navToc   = document.getElementById( 'nav_toc' );
	if( !navToc ) {
		//navRight.appendChild( errNode ); 
		return 0;
	}
alert('navToc = true');

	var navToc2 = navToc.cloneNode(true);
	navToc.parentNode.removeChild(navToc);
	navRight.appendChild( navToc2 ); 

	navToc2.style.display = 'block';
}