• 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 about base.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!

    • This topic was modified 7 years, 5 months ago by OriginalEXE.
  • The topic ‘JS bug report’ is closed to new replies.