Hi there,

there seems to be a bug in the interface/highlight.js plugin.
Setting the color option as an array doesn't work because the array detection

-------------------------------------------------
if (typeof color == 'array') {
-------------------------------------------------

fails (typeof is always "object").

I would suggest this check:
-----------------------------------------------------------------------------
if (color.constructor.toString().indexOf("Array") != -1) {
-----------------------------------------------------------------------------


greetings,
ecki


--

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to