mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 04:18:23 +00:00
8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
// discourse-skip-module
|
|
(function() {
|
|
const path = document.getElementById("data-auto-redirect").dataset.path;
|
|
setTimeout(function() {
|
|
window.location.href = path;
|
|
}, 2000);
|
|
})();
|