' + BList[i][1] + ''; break; case 2: t = t = '
جام های نقره ای بدست آمده
';; img = 's'; for (var i = 0; i < SList.length; i++) t += '' + SList[i][1] + ''; break; default: for (var i = 0; i < GList.length; i++) t += '' + GList[i][1] + ''; break; } $('#trophyList').slideUp(300); setTimeout(function () { $('#trophyList').html(t); $('#trophyList').slideDown(300); }, 300); } $('#loadGold').click(function () { tropyLoader(3); }); $('#loadSilver').click(function () { tropyLoader(2); }); $('#loadBronze').click(function () { tropyLoader(1); }); function topTrophy() { var b = ''; var s = ''; var g=''; BList.sort(function (a, b) { a = new Date(a[3]); b = new Date(b[3]); return b - a; }); SList.sort(function (a, b) { a = new Date(a[3]); b = new Date(b[3]); return b - a; }); GList.sort(function (a, b) { a = new Date(a[3]); b = new Date(b[3]); return b - a; }); var max = (BList.length > 2 ? 2 : BList.length); if (max == 0) b = 'بدون جام
'; else for (var i = 0; i < max; i++) b += '' + BList[i][1] + '' + dateTimeConvert(BList[i][3], 3) + ' '; max = (SList.length > 2 ? 2 : SList.length); if (max == 0) s = 'بدون جام
'; else for (var i = 0; i < max; i++) s += '' + SList[i][1] + '' + dateTimeConvert(SList[i][3], 3) + ' '; max = (GList.length > 2 ? 2 : GList.length); if (max == 0) g = 'بدون جام
'; else for (var i = 0; i < max; i++) g += '' + GList[i][1] + '' + dateTimeConvert(GList[i][3], 3) + ' '; $('#bronzeTrophy').append(b); $('#silverTrophy').append(s); $('#goldTrophy').append(g); $('#bronzeTrophy .number').html(BList.length); $('#silverTrophy .number').html(SList.length); $('#goldTrophy .number').html(GList.length); } topTrophy();