Table filter:
- League table
- Table Under/Over
- Table HT/FT
Table filter:
- League table
- Table Under/Over
- Table HT/FT
Table filter:
- League table
- Table Under/Over
- Table HT/FT
Table filter:
- League table
- Table Under/Over
- Table HT/FT
Table filter:
- League table
- Table Under/Over
- Table HT/FT
Table filter:
- League table
- Table Under/Over
- Table HT/FT
Table filter:
- League table
- Table Under/Over
- Table HT/FT
Table filter:
- League table
- Table Under/Over
- Table HT/FT
Table filter:
- League table
- Table Under/Over
- Table HT/FT
Table filter:
- League table
- Table Under/Over
- Table HT/FT
Table filter:
- League table
- Table Under/Over
- Table HT/FT
Table filter:
- League table
- Table Under/Over
- Table HT/FT
';
if(obj.attr('data-first-date-str'))
date = obj.attr('data-first-date-str');
else
date = get_date(obj.attr('data-first-date'),1);
var min='';
if(obj.attr('data-status-first') == 3)
min = ' '+obj.attr('data-m-f')+''';
html += '
'+obj.attr('data-sn-first')+min+'
'+date+'
'+teams.eq(0).html()+' '+obj.attr('data-first-score')+' '+teams.eq(1).html();
if(obj.attr('data-first-penalty') && obj.attr('data-first-penalty')!=' - ' && obj.attr('data-first-penalty')!=' -' && obj.attr('data-first-penalty')!='-')
html += ' penalties: '+obj.attr('data-first-penalty')+' ';
html += '
';
if(obj.attr('data-status-second'))
html += '
';
html += '
Second game:
';
if(obj.attr('data-second-date-str'))
date = obj.attr('data-second-date-str');
else
date = get_date(obj.attr('data-second-date'),1);
min='';
if(obj.attr('data-status-second') == 3)
min = ' '+obj.attr('data-m-s')+''';
html += '
'+obj.attr('data-sn-second')+min+'
'+date+'
'+teams.eq(1).html()+' '+obj.attr('data-second-score')+' '+teams.eq(0).html()+'
';
html += '
';
if(obj.attr('data-status-second')!=2)
html += '
';
html+'
';
obj.append(html);
}, function()
$('.playoff_game_info').remove();
);
$('.team_name').hover(function()
obj = $(this);
$('.team_'+obj.attr('data-team')).addClass('active');
, function()
$('.playoff_game').removeClass('active');
);
Source
Comments
Post a Comment