diff --git a/font/helvetica-neue-webfont.eot b/font/helvetica-neue-webfont.eot deleted file mode 100755 index e69f1936..00000000 Binary files a/font/helvetica-neue-webfont.eot and /dev/null differ diff --git a/font/helvetica-neue-webfont.svg b/font/helvetica-neue-webfont.svg deleted file mode 100755 index 5c7950d7..00000000 --- a/font/helvetica-neue-webfont.svg +++ /dev/null @@ -1,249 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Copyright : Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted 1981 2008 Linotype GmbH wwwlinotypecom All rights reserved This software is the property of Linotype GmbH and may not be reproduced used displayed modified disclosed or transferred without the express written approval of Linotype GmbH The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted c 1988 1990 1993 Adobe Systems All Rights Reserved This software is the property of Adobe Systems Incorporated and its licensors and may not be reproduced used displayed modified disclosed or transferred without the express written approval of Adobe Helvetica is a trademark of Linotype GmbH registered in the US Patent and Trademark Office and may be registered in certain other jurisdictions This typeface is original artwork of Linotype Design Studio The design may be protected in certain jurisdictions -Foundry : Linotype GmbH -Foundry URL : httpwwwlinotypecom - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/font/helvetica-neue-webfont.ttf b/font/helvetica-neue-webfont.ttf deleted file mode 100755 index 99902f68..00000000 Binary files a/font/helvetica-neue-webfont.ttf and /dev/null differ diff --git a/font/helvetica-neue-webfont.woff b/font/helvetica-neue-webfont.woff deleted file mode 100755 index 174825c5..00000000 Binary files a/font/helvetica-neue-webfont.woff and /dev/null differ diff --git a/js/main.js b/js/main.js index 5215f1b4..4fdcaee3 100644 --- a/js/main.js +++ b/js/main.js @@ -161,7 +161,10 @@ jQuery(document).ready(function($) { var sunset = new Date(json.sys.sunset*1000).toTimeString().substring(0,5); var windString = ' ' + kmh2beaufort(wind) ; - var sunString = (json.sys.sunrise*1000 > now && json.sys.sunset*1000 > now) ? ' ' + sunrise : ' ' + sunset; + var sunString = ' ' + sunrise; + if (json.sys.sunrise*1000 > now && json.sys.sunset*1000 > now) { + sunString = ' ' + sunset; + } $('.sun').updateWithText(windString+' '+sunString, 1000); });