14 lines
260 B
JavaScript
14 lines
260 B
JavaScript
|
// remove "Trending Fandom Articles" section
|
||
|
(function() {
|
||
|
$("section.group-FANDOM_TOPIC").hide();
|
||
|
})();
|
||
|
|
||
|
// remove Wikia notifications
|
||
|
(function() {
|
||
|
$("ul#WikiaNotifications").hide();
|
||
|
})();
|
||
|
|
||
|
// remove Wikia bar
|
||
|
(function() {
|
||
|
$("div#WikiaBar").hide();
|
||
|
})();
|