[noparse]
// ==UserScript==
// @name vBulletin - Cyb ChatBox font
// @description Adds extra font sizes for the ChatBox
// @version 0.1.1
// @date 2011-01-04
// @creator Krzysztof Markowski (aka orb, krzymark)
// @include http://www.orbiter-forum.com/
// @include http://orbiter-forum.com/
// @include http://www.orbiter-forum.com/index.php
// @include http://orbiter-forum.com/index.php
// @include http://www.orbiter-forum.com/misc.php?do=cchatbox
// @include http://orbiter-forum.com/misc.php?do=cchatbox
// ==/UserScript==
var ccb_fntsize = document.getElementById ("ccb_m_size");
if (ccb_fntsize) {
var curfsize = document.getElementById ('ccb_entermessage').style.fontSize;
var minfsize = 6;
var maxfsize = 16;
var sel;
ccb_fntsize.length = 0;
for (var i = minfsize; i <= maxfsize; ++i) {
sel = (i + "px" == curfsize);
try {
ccb_fntsize.add (new Option (i + "px", i, sel, sel), null);
} catch (e) { // in IE
ccb_fntsize.add (new Option (i + "px", i, sel, sel));
}
}
}
[/noparse]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.