Account manager initial commit.

Contributed by Liamxroy.
This commit is contained in:
MobiusDev
2018-03-21 00:11:54 +00:00
parent 4ba881c185
commit d98492c94e
82 changed files with 2970 additions and 0 deletions

View File

@ -0,0 +1,23 @@
$(window).on('load', function() {
"use strict";
});
var $document = $(document);
$document.ready(function() {
$document.on('click', '.stat-1', function(e) {
e.preventDefault();
var statLink = $(this).attr('data-target');
window.location = statLink;
});
$document.on('click', '.stat-2', function(e) {
e.preventDefault();
var statLinkS = $(this).attr('data-target');
window.location = statLinkS;
});
$document.on('click', '.langs > a', function(e) {
$.cookie('lang', $(this).data('lang'), {
expires: 365,
path: '/'
});
location.reload();
});
});