mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 20:54:00 -06:00
8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
// discourse-skip-module
|
|
(function () {
|
|
const path = document.getElementById("data-auto-redirect").dataset.path;
|
|
setTimeout(function () {
|
|
window.location.href = path;
|
|
}, 2000);
|
|
})();
|