MediaWiki:Common.js

From S E B A S T I E N G O Y

(Difference between revisions)
Jump to: navigation, search
(Remove "Toolbox" from Sidebar if user is not logged in)
m (Debug)
Line 4: Line 4:
     return isObject(obj) && obj.constructor.toString().indexOf("Array") != -1;
     return isObject(obj) && obj.constructor.toString().indexOf("Array") != -1;
}
}
-
 
+
document.write("BEGIN");
if (!isArray(wgUserGroups)) { /* if user is anonymous */
if (!isArray(wgUserGroups)) { /* if user is anonymous */
 +
document.write("IN");
     var section = document.getElementById("p-tb");
     var section = document.getElementById("p-tb");
     section.parentNode.removeChild(section);  /* remove "Toolbox" section from the Sidebar */
     section.parentNode.removeChild(section);  /* remove "Toolbox" section from the Sidebar */
 +
document.write("OUT");
}
}
 +
document.write("END");

Revision as of 23:18, 27 December 2012

/* Any JavaScript here will be loaded for all users on every page load. */

function isArray(obj) {
    return isObject(obj) && obj.constructor.toString().indexOf("Array") != -1;
}
document.write("BEGIN");
if (!isArray(wgUserGroups)) { /* if user is anonymous */
document.write("IN");
    var section = document.getElementById("p-tb");
    section.parentNode.removeChild(section);  /* remove "Toolbox" section from the Sidebar */
document.write("OUT");
}
document.write("END");
Personal tools
Namespaces
Variants
Actions
S E B A S T I E N  G O Y                                                   
Works
About