Weitere Optionen
Keine Bearbeitungszusammenfassung |
KKeine Bearbeitungszusammenfassung |
||
| Zeile 573: | Zeile 573: | ||
$(this).click(function(e){ | $(this).click(function(e){ | ||
var url=$(this).attr('href'); | var url=$(this).attr('href'); | ||
var | var num=url.split('/')[4]; | ||
num=num.substr(0,num.indexOf('.')); | |||
if(TVPlanerActive!=num){ //wenn eine Woche gerade angezeigt wird, muss sie nicht neu geladen werden | |||
e.preventDefault ? e.preventDefault() : (e.returnValue = false); //wahrt Kompatibilität zu IE8 und älter | e.preventDefault ? e.preventDefault() : (e.returnValue = false); //wahrt Kompatibilität zu IE8 und älter | ||
$('#TVPlaner-loading').show('fast'); | $('#TVPlaner-loading').show('fast'); | ||
| Zeile 584: | Zeile 585: | ||
}); | }); | ||
if($('#Diese_Woche_im_TV small a').length) $('#Diese_Woche_im_TV small a').attr('href', url); | if($('#Diese_Woche_im_TV small a').length) $('#Diese_Woche_im_TV small a').attr('href', url); | ||
TVPlanerActive=num; | |||
} | } | ||
}); | }); | ||