Hi
Edit the file : components/com_jamegafilter/assets/js/libs.js
Look for:
// helper with Uppercase.
if (v1 != null && typeof v1 == 'string') // make sure it's string
v1 = v1.toLowerCase();
if (v2 != null && typeof v2 == 'string') // make sure it's string
v2 = v2.toLowerCase();
// end Helper with Uppercase.
Add this under.
// helper with number.
if (typeof v1 == 'string' && v1.search(/^\d+$/) !== -1) {
v1 = parseInt(v1);
}
if (typeof v2 == 'string' && v2.search(/^\d+$/) !== -1) {
v2 = parseInt(v2);
}
// end helper with number
This fix will be updated in the next release version.
-
This reply was modified 7 years, 4 months ago by Saguaros.