Set the hash to the last clicked item in the FAQ

This commit is contained in:
yflory
2018-10-29 15:26:31 +01:00
parent ce3fef7e1c
commit 4edb1c2e0d
2 changed files with 6 additions and 1 deletions

View File

@@ -54,7 +54,9 @@ $(function () {
} else if (/invite/.test(pathname)) {
require([ '/invite/main.js'], function () {});
} else if (/faq/.test(pathname)) {
window.location.hash = window.location.hash;
var hash = window.location.hash;
window.location.hash = '';
window.location.hash = hash;
} else {
require([ '/customize/main.js', ], function () {});
}