projects
/
remoteglot
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ebce3d2
)
Fix some more TB short-form issues.
author
Steinar H. Gunderson
<sgunderson@bigfoot.com>
Sat, 13 Feb 2021 17:50:25 +0000
(18:50 +0100)
committer
Steinar H. Gunderson
<sgunderson@bigfoot.com>
Sat, 13 Feb 2021 17:50:25 +0000
(18:50 +0100)
www/js/remoteglot.js
patch
|
blob
|
history
diff --git
a/www/js/remoteglot.js
b/www/js/remoteglot.js
index e7c97e54736b4fda6049e677757983dd2cdf4e9a..37f5c7bd1b61a034e56e9471fc4cd74f074be7ce 100644
(file)
--- a/
www/js/remoteglot.js
+++ b/
www/js/remoteglot.js
@@
-7,7
+7,7
@@
* @type {Number}
* @const
* @private */
-var SCRIPT_VERSION = 2021021
2
00;
+var SCRIPT_VERSION = 2021021
3
00;
/**
* The current backend URL.
@@
-2130,7
+2130,7
@@
var format_short_score = function(score) {
if (score[0] === 'T') {
return ret + Math.ceil(score[1] / 2);
} else {
- return ret + "-" + Math.ceil(
-
score[1] / 2);
+ return ret + "-" + Math.ceil(score[1] / 2);
}
} else if (score[0] === 'M' || score[0] === 'm') {
var sign = (score[0] === 'm') ? '-' : '';