IW4M-Admin/Admin/webfront/footer.html

45 lines
1.2 KiB
HTML
Raw Normal View History

<div id="footer">IW4M Admin v{{VERSION}} &mdash; <a href="http://raidmax.org/IW4MAdmin">RaidMax.org</a></div>
<script>
$('a').each(function () {
this.href = this.href.replace('userip', userip);
});
</script>
<script>
$(function () {
$("#history_dialog").dialog({
autoOpen: false,
modal: true,
2015-04-27 13:40:57 -04:00
width: 1100,
height: 450,
buttons: {
"Dismiss": function () {
$(this).dialog("close");
}
}
});
$("a.history").on("click", function (e) {
e.preventDefault();
$("#history_dialog").html("");
$("#history_dialog").dialog("option", "title", "Player History").dialog("open");
$("#history_dialog").load(this.href);
});
});
2015-08-23 17:58:48 -04:00
</script>
<script>
$(function () {
$('.pseudoLinkAlias').click(function (e) {
e.preventDefault();
$(this).next().toggle('fast');
return true;
});
});
$(function () {
$('.pseudoLinkIP').click(function (e) {
2015-08-23 17:58:48 -04:00
e.preventDefault();
$(this).next().toggle('fast');
return true;
2015-08-23 17:58:48 -04:00
});
});
</script>
</body>
</html>