]> git.sesse.net Git - remoteglot/blobdiff - www/js/remoteglot.js
Add the short score to the document title.
[remoteglot] / www / js / remoteglot.js
index 595bce185aa1a3457dc89cb5241fe5abee9c307e..9d83e55783168f841119c8666a91333be43e1f32 100644 (file)
@@ -48,8 +48,8 @@ var highlight_to = undefined;
 /** @type {?jQuery} @private */
 var highlighted_move = null;
 
-/** @type {!number} @private */
-var unique = Math.random();
+/** @type {?number} @private */
+var unique = null;
 
 /** The current position on the board, represented as a FEN string.
  * @type {?string}
@@ -76,6 +76,28 @@ var current_display_line = null;
 /** @type {?number} @private */
 var current_display_move = null;
 
+var supports_html5_storage = function() {
+       try {
+               return 'localStorage' in window && window['localStorage'] !== null;
+       } catch (e) {
+               return false;
+       }
+}
+
+// Make the unique token persistent so people refreshing the page won't count twice.
+// Of course, you can never fully protect against people deliberately wanting to spam.
+var get_unique = function() {
+       var use_local_storage = supports_html5_storage();
+       if (use_local_storage && localStorage['unique']) {
+               return localStorage['unique'];
+       }
+       var unique = Math.random();
+       if (use_local_storage) {
+               localStorage['unique'] = unique;
+       }
+       return unique;
+}
+
 var request_update = function() {
        $.ajax({
                url: "http://analysis.sesse.net/analysis.pl?ims=" + ims + "&unique=" + unique
@@ -578,6 +600,10 @@ var update_board = function(data, num_viewers) {
        // The score.
        if (data['score'] !== null) {
                $("#score").text(data['score']);
+               var short_score = data['score'].replace(/Score: */, "");
+               document.title = '(' + short_score + ') analysis.sesse.net';
+       } else {
+               document.title = 'analysis.sesse.net';
        }
 
        // The search stats.
@@ -809,6 +835,8 @@ var update_displayed_line = function() {
 }
 
 var init = function() {
+       unique = get_unique();
+
        // Create board.
        board = new window.ChessBoard('board', 'start');
        hiddenboard = new window.ChessBoard('hiddenboard', 'start');