This commit is contained in:
Michael Teeuw 2014-02-25 13:56:00 +01:00
parent 85a40f68cb
commit 5deb6de863
2 changed files with 5 additions and 5 deletions

View File

@ -64,12 +64,12 @@ body, html {
.xdimmed
{
color: #666;
color: #bbb;
}
.dimmed
{
color: #999;
color: #ddd;
}
.icon
@ -101,7 +101,7 @@ body, html {
.forecast-table .day
{
color: #999;
color: #ddd;
}
@font-face {

View File

@ -211,7 +211,7 @@ jQuery(document).ready(function($) {
}, 60000);
})();
(function showNews() {
function showNews() {
var newsItem = news[newsIndex];
$('.news').updateWithText(newsItem,2000);
@ -220,6 +220,6 @@ jQuery(document).ready(function($) {
setTimeout(function() {
showNews();
}, 5500);
})();
};
});