Files
Paradise/html/ntsl2/src/js/link_loader.js
T

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