Hi when i updated to current version i had a conflict with lightbox on line 465 told me Array length must be assigned a finite positive number, it happens when you try to open up your smiley window.
the fix is easy, just ad an if clause to that variable so that there is no conflict, this will fix the conflict with jquery also if you get an error there.
if your using an older version of lightbox
open up lightbox/js/prototype.js
the original is like this
your going to change the next to last line that says this.length--;
to
and thats it, save and close
your smiley window should open now, no conflict, hope this helps someone.
the fix is easy, just ad an if clause to that variable so that there is no conflict, this will fix the conflict with jquery also if you get an error there.
if your using an older version of lightbox
open up lightbox/js/prototype.js
the original is like this
shift: function() { var result = this[0]; for (var i = 0; i < this.length - 1; i++) this[i] = this[i + 1]; this.length--; return result; },
your going to change the next to last line that says this.length--;
to
if(this.length>0)this.length--;
and thats it, save and close
your smiley window should open now, no conflict, hope this helps someone.