Fixing various client issues.

This commit is contained in:
marcins78@gmail.com
2012-04-06 16:27:34 +00:00
parent 8ba9c7574d
commit dc2eda9dc6
2 changed files with 7 additions and 1 deletions

View File

@@ -277,7 +277,9 @@
<li><a href="#gameHall">Game Hall</a></li>
<li><a href="includes/gameHistory.html">Game History</a></li>
<li><a href="includes/leagueResults.html">Leagues</a></li>
<li><a href="includes/leagueRules.html">League Rules (updated)</a></li>
<script type="text/javascript">
document.write('<li><a href="includes/leagueRules.html?_=' + (new Date().getTime()) + '">League Rules (updated)</a></li>');
</script>
<li><a href="includes/instruction.html">Manual</a></li>
<li><a href="/gemp-lotr/server/hall/formats/html">Format Rules</a></li>
<li><a href="includes/contribute.html">Contribute</a></li>

View File

@@ -68,6 +68,10 @@ var LeagueResultsUI = Class.extend({
function() {
that.communication.joinLeague(leagueCode, function() {
that.loadResults();
}, {
"409": function() {
alert("You don't have enough funds to join this league.");
}
});
});
};