@lolzim I had the same error and was able to fix it by adding jqueryUI and fixing some minor issues in the js file:
jquery UI: https://pasteboard.co/JsQcmIQ.png
js fixes: everywhere where there’s a ‘a.browser’ check (eg. !a.browser.msie
) I added a check if the property a.browser even exists (eg. !(a.browser && a.browser.msie)
).
Hope it helps solve the problem ??