1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Dirty fix the bolding of events in your country

This commit is contained in:
Hannes Magnusson
2009-05-11 11:01:42 +00:00
parent 3c51c0c52e
commit 8d2156d2eb

View File

@@ -32,7 +32,7 @@ function boldEvents()
// Style every span bold which is for this country
for (var i = 0; i < spans.length; i++) {
if (spans[i].className == "event_" + country) {
if (spans[i].className == "event_" + country + " vevent") {
spans[i].style.fontWeight = "bold";
}
}