PDA

View Full Version : cannot see count down



guitardude108
October 19th, 2009, 10:43 PM
Is it just my computer or can noone see the countdown timer on the main page. to me it looks like incomplete coding seeing as how it looks like coding and nothing else. if it is just my computer, can anyone tell me the time it will be realeased and the time zone!

Zygor Support
October 19th, 2009, 10:49 PM
Do you have javascript enabled in your browser? If not you will not be able to see the countdown. Currently the countdown is at 12 hours, 10 minutes, 7 seconds.

silverhawk11
October 19th, 2009, 10:51 PM
Hello guitardude108,

Make sure you have Java enabled. It'll be released in about 12 hours from now, which means just switch your time right now from AM to PM and 2.0 will be released. Enjoy.

Silverhawk11

wowvern
October 19th, 2009, 11:28 PM
var then = 1256050800; var now = 1256009182;

Is this the clock? It's a little screwed up.

ssgfaber
October 19th, 2009, 11:36 PM
var then = 1256050800; var now = 1256009182;

Is this the clock? It's a little screwed up.

Yeah I went ahead an made sure Active Scripting was enabled.

I still dont see a running clock.

porifera
October 19th, 2009, 11:49 PM
I couldn't get it to display in IE 8, had to switch to Firefox.

draxionangel
October 20th, 2009, 12:03 AM
Well, just a quick look at the code and this is the problem.

<div class="words"

This div isn't closed, so the code is broken on certain browsers, except Firefox, and possible others.
Broken in IE, and Opera.


WRONG:
<div class="countdowncss">
<div class="words"
<script id="countdown" type="text/javascript">
var then = 1256050800;
var now = 1256011233;
</script>
<script src="countdown.js" type="text/javascript"></script>
</div>
</div>


CORRECT:
<div class="countdowncss">
<div class="words">
<script id="countdown" type="text/javascript">
var then = 1256050800;
var now = 1256011233;
</script>
<script src="countdown.js" type="text/javascript"></script>
</div>
</div>

Zygor
October 20th, 2009, 12:10 AM
FIXED! Thanks for pointing that out draxionangel. :-)

porifera
October 20th, 2009, 12:23 AM
Much better! :)

wowvern
October 20th, 2009, 12:51 AM
I don't work in source code because it is too time consuming for me. However, I do understand it. Nice catch on the open-ended line of code. It can cause a massive headache if not caught. The staff has worked hard to get this version up and running, so they're entitled to a, um, minor screwup.