From 8d2156d2eb56ffbc686e8aaa5de39a5b95c66927 Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Mon, 11 May 2009 11:01:42 +0000 Subject: [PATCH] Dirty fix the bolding of events in your country --- userprefs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userprefs.js b/userprefs.js index 6db730b2a..3aee6a3cc 100644 --- a/userprefs.js +++ b/userprefs.js @@ -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"; } }