This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/auto-redirect.js
2020-03-25 12:30:20 -04:00

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);
})();