mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
7 lines
166 B
Text
7 lines
166 B
Text
|
(function() {
|
||
|
const path = document.getElementById("data-auto-redirect").dataset.path;
|
||
|
setTimeout(function() {
|
||
|
window.location.href = path;
|
||
|
}, 2000);
|
||
|
})();
|