MediaWiki:Common.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
K |
K |
||
Zeile 20: | Zeile 20: | ||
var newCSS = document.styleSheets[document.styleSheets.length-1], | var newCSS = document.styleSheets[document.styleSheets.length-1], | ||
newRules = newCSS.cssRules || newCSS.rules; // für alle Browser ansprechbar | newRules = newCSS.cssRules || newCSS.rules; // für alle Browser ansprechbar | ||
+ | |||
/*********************************** | /*********************************** | ||
IMPORT | IMPORT | ||
***********************************/ | ***********************************/ | ||
+ | |||
+ | for (i in wgCategories) { | ||
+ | if (wgCategories[i]=='Styles') { | ||
/*** LAYOUT ***/ | /*** LAYOUT ***/ | ||
Zeile 35: | Zeile 39: | ||
/*** POPUPS ***/ | /*** POPUPS ***/ | ||
importScript('mediawiki:popup.js'); | importScript('mediawiki:popup.js'); | ||
+ | |||
+ | } | ||
+ | } | ||
+ | |||
+ | /*********************************** | ||
+ | IMPORT | ||
+ | ***********************************/ | ||
+ | |||
+ | |||
+ | /*********************************** | ||
+ | IMPORT | ||
+ | ***********************************/ |
Version vom 4. Januar 2012, 18:14 Uhr
for (i in wgUserGroups)
if (wgUserGroups[i] == 'sysop')
var sysopRights = true;
/***********************************
Stylesheet changes
***********************************/
document.write (
'<style>' +
' body {}' + //0
' #content #bodyContent {}' + //1
' #p-personal {}' + //2
' #siteNotice.fixed {}' + //3
' .glossar2:hover small small {}' + //4
' div#footer {}' + //5
' </style>'
);
var newCSS = document.styleSheets[document.styleSheets.length-1],
newRules = newCSS.cssRules || newCSS.rules; // für alle Browser ansprechbar
/***********************************
IMPORT
***********************************/
for (i in wgCategories) {
if (wgCategories[i]=='Styles') {
/*** LAYOUT ***/
importScript('mediawiki:layout.js');
/*** GLOSSAR ***/
importScript('mediawiki:glossar.js');
/*** NAVIGATION ***/
importScript('mediawiki:navigation.js');
/*** POPUPS ***/
importScript('mediawiki:popup.js');
}
}
/***********************************
IMPORT
***********************************/
/***********************************
IMPORT
***********************************/