Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
Actually, I've just found a fix for this, it's a bug in jQuery Tools where they forgot to add quotes around an attribute selector:https://github.com/jquerytools/jquerytools/pull/596https://github.com/neutroncreations/jquerytools/commit/3f29890586b0d7cba0057d2368b7f8ab496d1f61 Fixing this simply involved finding this in the jquery.tools.min.js file used by Xenforo:[code]c.find("[href="+location.hash+"]")[/code]and adding single quotes around the location.hash:[code]c.find("[href='"+location.hash+"']")[/code]
Actually, I've just found a fix for this, it's a bug in jQuery Tools where they forgot to add quotes around an attribute selector:
https://github.com/jquerytools/jquerytools/pull/596
https://github.com/neutroncreations/jquerytools/commit/3f29890586b0d7cba0057d2368b7f8ab496d1f61
Fixing this simply involved finding this in the jquery.tools.min.js file used by Xenforo:
[code]c.find("[href="+location.hash+"]")[/code]
and adding single quotes around the location.hash:
[code]c.find("[href='"+location.hash+"']")[/code]
We use essential cookies to make this site work, and optional cookies to enhance your experience.
See further information and configure your preferences