I’m having the same errors. Upon looking at both of the files you are referring to,
I found 4 differences in the code comparing the 2 files (the minified version vs. the non-minified version: (And actually, the “minified” version is not minified. Also, looking at the plugin PHP files, I don’t see references to the minified versions, so perhaps just correcting the non-minified versions will do?)
ON LINE 380 of:
frontend.js shows
(function ($, root, undefined) {
BUT ON LINE 380 of:
frontend.min.js shows
(function ($, el, root, undefined) {
ALSO ON LINE 395 of:
frontend.min.js (BUT NOT IN frontend.js) shows
var el;
AND ON LINE 405 of:
frontend.min.js (BUT NOT IN frontend.js) shows
var el;
ALSO ON LINE 499 of:
frontend.js shows
})( jQuery, this.el );
BUT ON LINE 501 of:
frontend.min.js shows
})( jQuery );
-
This reply was modified 6 years, 2 months ago by denvergeeks.
-
This reply was modified 6 years, 2 months ago by denvergeeks.
-
This reply was modified 6 years, 2 months ago by denvergeeks.