Page 1 of 1

Tomorrow @ NaN:NaN am

PostPosted: Tue Sep 27, 2011 5:35 pm
by Porteiro
When I'm looking at the "My Games" page, the time remaining for each game is listed as "Tomorrow @ NaN:NaN am".

Does this happen for anybody else?

Re: Tomorrow @ NaN:NaN am

PostPosted: Tue Sep 27, 2011 8:58 pm
by Calidrmr
Porteiro wrote:When I'm looking at the "My Games" page, the time remaining for each game is listed as "Tomorrow @ NaN:NaN am".

Does this happen for anybody else?


Hello...try this:

iamkoolerthanu wrote:Ha fixed it :)

Went to manage user scripts, right clicked BoB, clicked show containing folder. Then clicked edit from there and then edited the 1 to a 2, now it works fine!

Thanks everyone!

once your in "edit" mode, find this (you will need to scroll about halfway down to find it):

rbelgrod wrote:when i click edit, it does nothing

ok, that worked great, now all is working ....thanks buddy your a genius


function updateMyGamesClock(elements) {
$(elements).each(function (){
var currentHTML = this.innerHTML,
time = currentHTML.split('<br>')[1].split(':'),.........................change this 1 to a 2
targetDate = new Date(),
secondsLeft = parseInt(time[2],10) + parseInt(time[1],10) * 60 + parseInt(time[0],10) * 60 * 60,
additionalClock = $(this).find('.additionalClock');
targetDate.setTime(targetDate.getTime() + (secondsLeft * 1000));
if (!additionalClock.exists()) {
additionalClock = $('<span class="additionalClock"></span>');
$(this).append('<br />').append(additionalClock);
}
additionalClock.html(getAdditionalClockInfo(targetDate));

Re: Tomorrow @ NaN:NaN am

PostPosted: Wed Sep 28, 2011 4:37 am
by Victor Sullivan
It's amazing what one little number can do! :)

-Mr. Sully

Re: Tomorrow @ NaN:NaN am

PostPosted: Thu Sep 29, 2011 7:17 am
by Squirly
worked for me, thanks

Re: Tomorrow @ NaN:NaN am

PostPosted: Sun Oct 02, 2011 4:09 am
by lord voldemort
Is there a fix for chrome...I can't work it out :(