summaryrefslogtreecommitdiff
path: root/cao-mobile.js
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2015-06-08 22:36:07 +0100
committerOlivier Gayot <duskcoder@gmail.com>2015-06-08 22:37:50 +0100
commit541cefc5509fde6870b8adb03f8bc4abdf823510 (patch)
tree3f9b092e54351abd39e62d1c6071effbcc22e23a /cao-mobile.js
parent669957dd8cc2dfe697bbbc38d6e695236b3ac4b1 (diff)
mobile: handle the score
updates in the score are reflected in the top bar of the mobile iface. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'cao-mobile.js')
-rw-r--r--cao-mobile.js5
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();
});