Community Central
Register
Community Central
Hello, fellow Wikian!

What am I here to do? I'm here to ask and answer questions.

What is my home wiki? My home wiki is Avatar Wiki.

Where can you find me? I am a rollback user on Avatar Wiki (linked above), an administrator on Avatar: The First Skybender Wiki, and a normal user on Avatar Answers Wiki. I also might ask a question from time to time on the VSTF Wiki.

What do I enjoy doing? I very much enjoy writing JavaScript scripts. Here is a list of all functional ones that I have written on Wikia so far, as well as an explanation of how they work:

  1. CommentsDisabled.js — Originally build for use on Avatar wiki, I later developed the script to work correctly on all wikis with not only articles but with blog posts and other pages as well. All you need to use the script is ask and import it.
  2. ModuleStyle.js — This script was build to simplify the styling of module boxes using gradient background and border radius with cross browser support. All that needs to be done for it to be used is for you to ask for permission, define some variables, and import the script. Here is an example use:
var gradient = true, startColor = "#000000", endColor = "#FFFFFF", borderRadiusPresent = true, borderRadiusLength = "10px";
importScriptPage('User:MateyY/ModuleStyle.js', 'c');
That saves you tens of lines of more complicated CSS! Full documentation can be found on the script page itself.