summaryrefslogtreecommitdiffstats
path: root/include/game.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2012-10-06 00:19:12 -0700
committerArun Persaud <arun@nubati.net>2012-10-06 00:19:12 -0700
commit293b20963f2bbf0cfca1a146506d65d615b01c2c (patch)
tree6bc70a842bd4ba68a28645de1b2b85f3d8c68dad /include/game.php
parent494ee831e66d59afbf02d42ba59b7ba21f61c011 (diff)
downloade-DoKo-293b20963f2bbf0cfca1a146506d65d615b01c2c.tar.gz
e-DoKo-293b20963f2bbf0cfca1a146506d65d615b01c2c.tar.bz2
e-DoKo-293b20963f2bbf0cfca1a146506d65d615b01c2c.zip
starting to bootstrap the layout: navbar and tricks
- changing the tricks-selector to a paginator and fixing the js for highlighting - adding a navbar using bootstrap, probably should use .wrap more instead of adding divs to the code
Diffstat (limited to 'include/game.php')
-rw-r--r--include/game.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/game.php b/include/game.php
index d43699b..d07ff5b 100644
--- a/include/game.php
+++ b/include/game.php
@@ -367,7 +367,7 @@ switch($mystatus)
case 'check':
/* output sickness of other playes, in case they already selected and are sitting in front of the current player */
echo "\n<ul class=\"tricks\">\n";
- echo " <li onclick=\"hl('0');\" class=\"current\"><a href=\"#\">Pre</a>\n";
+ echo " <li onclick=\"hl('0');\" class=\"active\" id=\"tricks0\"><a href=\"#\">Pre</a>\n";
echo " </li>\n</ul>\n"; /* end div trick, end li trick , end tricks*/
/* end displaying sickness */
@@ -381,7 +381,7 @@ switch($mystatus)
$mygametype = DB_get_gametype_by_gameid($gameid);
- echo " <li onclick=\"hl('0');\" class=\"current\"><a href=\"#\">Pre</a>\n";
+ echo " <li onclick=\"hl('0');\" class=\"active\"><a href=\"#\">Pre</a>\n";
echo " </li>\n</ul>\n\n"; /* end div trick, end li trick , end ul tricks */
}
/* end output pre-game trick */
@@ -411,19 +411,19 @@ switch($mystatus)
{
$trick=$r[0];
if($trick!=$lasttrick)
- echo " <li onclick=\"hl('$trickNR');\" class=\"old\"><a href=\"#\">"._('Trick')." $trickNR</a></li>\n";
+ echo " <li onclick=\"hl('$trickNR');\" id=\"tricks$trickNR\"><a href=\"#\">"._('Trick')." $trickNR</a></li>\n";
else if($trick==$lasttrick)
- echo " <li onclick=\"hl('$trickNR');\" class=\"current\"><a href=\"#\">"._('Trick')." $trickNR</a></li>\n";
+ echo " <li onclick=\"hl('$trickNR');\" id=\"tricks$trickNR\" class=\"active\"><a href=\"#\">"._('Trick')." $trickNR</a></li>\n";
$trickNR++;
}
/* if game is over, also output link to Score tab */
if($mystatus=='gameover' && DB_get_game_status_by_gameid($gameid)=='gameover' )
- echo " <li onclick=\"hl('13');\" class=\"current\"><a href=\"#\">"._('Score')."</a></li>\n";
+ echo " <li onclick=\"hl('13');\" id=\"tricks13\" class=\"active\"><a href=\"#\">"._('Score')."</a></li>\n";
/* output previous/next buttons */
- echo ' <li onclick="hl_prev();" ><button>'._('prev')."</button></li>\n";
- echo ' <li onclick="hl_next();" ><button>'._('next')."</button></li>\n";
+ echo ' <li onclick="hl_prev();" id=\"prevtr\"><a href="#">'._('prev')."</a></li>\n";
+ echo ' <li onclick="hl_next();" id=\"nexttr\"><a href="#">'._('next')."</a></li>\n";
echo "</ul>\n\n";