Jafo232
02-11-2009, 10:00 PM
I asked over at vbulletin.com (http://www.vbulletin.com/forum/showthread.php?t=299716) in the suggestion area that they put alts in the color picker section of the WYSIWYG. Basically, when you mouse over any of the colors, it will alt with the color name, i.e. "Red". Everyone seemed to agree it should already be there and someone also posted the code to do it:
In clientscript/vbulletin_textedit.js find:
option.onclick = vB_Text_Editor_Events.prototype.coloroption_onclic k;
below add:
option.title = option.colorname;
On my version, I found the javascript a little different, so here is what I found:
option.onclick = vB_Text_Editor_Events.prototype.coloroption_onclic k
next to it add:
;option.title = option.colorname;
Hope this helps those like me who cant see colors well. :)
In clientscript/vbulletin_textedit.js find:
option.onclick = vB_Text_Editor_Events.prototype.coloroption_onclic k;
below add:
option.title = option.colorname;
On my version, I found the javascript a little different, so here is what I found:
option.onclick = vB_Text_Editor_Events.prototype.coloroption_onclic k
next to it add:
;option.title = option.colorname;
Hope this helps those like me who cant see colors well. :)