diff options
Diffstat (limited to 'cao-mobile.js')
-rw-r--r-- | cao-mobile.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cao-mobile.js b/cao-mobile.js index d476e1c..6776bb6 100644 --- a/cao-mobile.js +++ b/cao-mobile.js @@ -14,6 +14,7 @@ $(document).ready(function() { var $played_card_number = $("#played-card-number"); var $header = $("header"); var $white_cards = $('#white-cards'); + var $score_value = $('#score-value'); $leave_room.click(function () { window.location.reload(); @@ -108,5 +109,9 @@ $(document).ready(function() { $become_judge.show(); }; + cao.on_updated_score = function(score) { + $score_value.html(score); + }; + cao.run(); }); |