diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-03-12 22:58:30 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-03-12 22:58:30 -0700 |
commit | a444a1d8117c17f221899524a0d14df6dd65aaec (patch) | |
tree | 2a44a97ccc9dc6faed47afa8556471a4c4758f20 /pages/home.php | |
parent | 96803882ec2a7677f9e92f1707636b589edca461 (diff) | |
download | pathery-a444a1d8117c17f221899524a0d14df6dd65aaec.tar.xz |
BUGFIX: "Tomorrow today" not executing
Diffstat (limited to 'pages/home.php')
-rw-r--r-- | pages/home.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/home.php b/pages/home.php index 8c88d49..4a3c8a6 100644 --- a/pages/home.php +++ b/pages/home.php @@ -308,7 +308,7 @@ $timeUntilNewWeeklyMap = strtotime(getNextWeeklyMapDateTime()) - strtotime("now" document.getElementById("countdown").innerHTML = newMapStr;
//TODO: It would not be very hard to dynamically load the new map w/o refresh.
- if (timerem <= 1 && userConfirm == true) {
+ if (timerem <= 1000 && userConfirm == true) {
userConfirm = confirm("It's Tomorrow Today! Go to new maps?")
if (userConfirm) {
location.reload(true);
|