Дело было по пьяне....
Код:
/**
* Created by Warak on 09.01.2017.
*/
$("li").click(function () {
if (!$(this).hasClass("active")) {
$("li.active").removeClass("active");
$(this).addClass("active");
}
});
($(document).ready(function () {
var chronics = {
1: "Interlude",
2: "High Five",
3: "Gracia Final",
};
function GetServers() {
$.post('/ajax/getServers').success(function (res) {
console.log(res);
function isVip(name, status, color) {
if (status === true) {
return '<strong style="color: ' + color + ';">VIP ' + name + '</strong>';
}
return name;
}
$.each(res, function (key, val) {
$('#tbl_' + val['type']).append('<tr>' +
'<td><a href="redirect/' + val['id'] + '" target="_blank">' + isVip(val['name'], val['vip'], val['vipColor']) + '</a></td>' +
'<td>' + chronics[val['chronicId']] + '</td>' +
'<td>X' + val['rates'] + '</td>' +
'<td>' + val['openDate'] + '</td>' +
'</tr>');
});
});
}
GetServers();
$('#regClick').on('click', function () {
$('.modal-title').html('Регистрация');
$('#modalContent').load('/register');
$('#myModal').modal('show');
});
$('#about').on('click', function () {
$('.container').load('/about');
});
$('#main').on('click', function () {
});
}));