mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-21 11:07:12 +01:00
14 lines
292 B
JavaScript
14 lines
292 B
JavaScript
var $ = require("jquery");
|
|
|
|
module.exports.reload = function () {
|
|
$(".linkActive")
|
|
.off("click")
|
|
.on("click", function (event) {
|
|
event.preventDefault();
|
|
var href = $(this).data("href");
|
|
if (href) {
|
|
href = window.byondSrc + href;
|
|
window.location.href = href;
|
|
}
|
|
})
|
|
}; |