mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 17:58:41 +00:00
13 lines
228 B
JavaScript
Executable File
13 lines
228 B
JavaScript
Executable File
/**
|
|
* Reload page.
|
|
*
|
|
* @param {{delay:number}} data Message data
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
export function reloadMessage (data) {
|
|
setTimeout(function () {
|
|
document.location.reload();
|
|
}, parseInt(data.delay));
|
|
};
|