Files
discourse/app/assets/javascripts/auto-redirect.js
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
193 B
JavaScript
Raw Normal View History

2020-03-11 09:43:55 -04:00
// discourse-skip-module
(function () {
const path = document.getElementById("data-auto-redirect").dataset.path;
setTimeout(function () {
window.location.href = path;
}, 2000);
})();