mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 03:48:23 +00:00
7 lines
166 B
Plaintext
7 lines
166 B
Plaintext
|
(function() {
|
||
|
const path = document.getElementById("data-auto-redirect").dataset.path;
|
||
|
setTimeout(function() {
|
||
|
window.location.href = path;
|
||
|
}, 2000);
|
||
|
})();
|