diff options
author | Arun Persaud <arun@nubati.net> | 2011-11-15 21:13:20 -0800 |
---|---|---|
committer | Arun Persaud <apersaud@lbl.gov> | 2011-11-15 21:13:20 -0800 |
commit | 75d3974143dbaa3601317f767d77ed1c3cc13e9b (patch) | |
tree | cd0f7c991e96af8afd2325ef4cdfc63f7a0c436c /include/game.php | |
parent | 725eee244ea7a03b60ac20998f2dfc8677cdbcf2 (diff) | |
download | e-DoKo-75d3974143dbaa3601317f767d77ed1c3cc13e9b.tar.gz e-DoKo-75d3974143dbaa3601317f767d77ed1c3cc13e9b.tar.bz2 e-DoKo-75d3974143dbaa3601317f767d77ed1c3cc13e9b.zip |
LAYOUT: use html5 buttons for prev/next for the tricks
Diffstat (limited to 'include/game.php')
-rw-r--r-- | include/game.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/game.php b/include/game.php index 621b0b0..6d5b169 100644 --- a/include/game.php +++ b/include/game.php @@ -417,8 +417,8 @@ switch($mystatus) echo " <li onclick=\"hl('13');\" class=\"current\"><a href=\"#\">"._('Score')."</a></li>\n"; /* output previous/next buttons */ - echo " <li onclick=\"hl_prev();\" class=\"old\"><a href=\"#\">"._('prev')."</a></li>\n"; - echo " <li onclick=\"hl_next();\" class=\"old\"><a href=\"#\">"._('next')."</a></li>\n"; + echo " <li onclick=\"hl_prev();\" ><button>"._('prev')."</button></li>\n"; + echo " <li onclick=\"hl_next();\" ><button>"._('next')."</button></li>\n"; echo "</ul>\n\n"; |