JS bug report
-
Hello,
first of all, thank you for creating and maintaining this plugin. I would like to report a bug that I was able to fix, but would love if you could incorporate it in the next update so that it doesn’t overwrite what I did.
So the issue is caused by the jquery.equalizer.js file. What happened on our clients site is that
base.curRows = base.curRows.add($this);
would throw warning aboutbase.curRows
being undefined in some cases. The solution was to wrap that line like this:if (base.curRows) { base.curRows = base.curRows.add($this); }
I hope you can change this in the next update, thanks again and have a nice day!
- The topic ‘JS bug report’ is closed to new replies.