You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the /dashboard/store/products/groups page, if I tried to click the edit or trash button on any of the groups I got a javascript error such as:
Error: Syntax error, unrecognized expression: li['data-group-id=1']
Fixed by editing lines 79, 80, 83 and 84 of js/vividStoreFunctions.js in the edit and cancel functions:
Changed these:
FROM: $("li['data-group-id="+groupID+"']")
TO: $("li[data-group-id='"+groupID+"']")
ALSO I then hit an additional error with line 48 of that file:
var confirmDelete = confirm(vividStore.Strings.AreYouSure);
ReferenceError: vividStore is not defined
I have hardcoded that confirmation message on mine for now - perhaps you can fix.
The text was updated successfully, but these errors were encountered:
On the /dashboard/store/products/groups page, if I tried to click the edit or trash button on any of the groups I got a javascript error such as:
Error: Syntax error, unrecognized expression: li['data-group-id=1']
Fixed by editing lines 79, 80, 83 and 84 of js/vividStoreFunctions.js in the edit and cancel functions:
Changed these:
FROM:
$("li['data-group-id="+groupID+"']")
TO:
$("li[data-group-id='"+groupID+"']")
ALSO I then hit an additional error with line 48 of that file:
var confirmDelete = confirm(vividStore.Strings.AreYouSure);
ReferenceError: vividStore is not defined
I have hardcoded that confirmation message on mine for now - perhaps you can fix.
The text was updated successfully, but these errors were encountered: