User:Ziggy Sawdust/monobook.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
The accompanying .css page for this skin can be added at User:Ziggy Sawdust/monobook.css. |
// [[User:Pyrospirit/scriptpackage.js]]
/*
This is a collection of JavaScript assembled by [[User:Pyrospirit]]. I haven't written
any of this myself, but I use all of it and find it very useful.
These scripts are designed for use in Firefox and will all work in Firefox. Most of the
scripts won't work in Internet Explorer, and I have no idea what will happen with other
browsers. Solution: get Firefox.
I'm somewhat of a newbie with JavaScript, so please report any problems with these
scripts to whomever wrote the script or ask at [[Wikipedia:Village pump (technical)]].
To decrease loading time, I've set many scripts only to run on certain types of pages.
So, if a script isn't showing up, it might be because you'd almost never use it on the
page you're on anyway.
*/
/*
== Scripts in this area are enabled in all browsers ==
*/
// [[User:Lupin/popups.js]] - navigation popups
if(wgAction!='edit' && wgAction!='submit')
importScript('User:Lupin/popups.js');
// [[User:Jsimlo/shortcuts.js]] - customized sidebar links
importScript('User:Jsimlo/shortcuts.js');
function shortcutsInit ()
{
shortcutsAddLink ( 'Monobook.js', 'Special:Mypage/monobook.js' );
shortcutsAddLink ( 'New pages', 'Special:Newpages' );
shortcutsAddLink ( 'AIV', 'Wikipedia:Administrator intervention against vandalism' );
shortcutsAddLink ( 'Orphans', 'Category:Orphaned articles from July 2006' );
shortcutsAddLink ( 'Nocats', 'Category:Uncategorized from May 2009' );
shortcutsAddLink ( 'Cleanup', 'Category:Cleanup from October 2006' );
shortcutsAddLink ( 'AIV', 'Wikipedia:Administrator intervention against vandalism' );
shortcutsAddLink ( 'Help desk', 'Wikipedia:Help desk' );
shortcutsAddLink ( 'RD:COMP', 'Wikipedia:Reference desk/Computing' );
shortcutsAddLink ( 'RD:ENT', 'Wikipedia:Reference desk/Entertainment' );
shortcutsAddLink ( 'RD:HUM', 'Wikipedia:Reference desk/Humanities' );
shortcutsAddLink ( 'RD:LANG', 'Wikipedia:Reference desk/Language' );
shortcutsAddLink ( 'RD:MATH', 'Wikipedia:Reference desk/Mathematics' );
shortcutsAddLink ( 'RD:SCI', 'Wikipedia:Reference desk/Science' );
shortcutsAddLink ( 'RD:MISC', 'Wikipedia:Reference desk/Miscellaneous' );
}