diff js/core.js @ 2607:342ef7948c47

#37. All interfaces use interfaceContext.getLabel to generate labels
author Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk>
date Mon, 14 Nov 2016 16:12:34 +0000
parents 8188efa9415d
children 756d12f5c330
line wrap: on
line diff
--- a/js/core.js	Mon Nov 14 15:48:26 2016 +0000
+++ b/js/core.js	Mon Nov 14 16:12:34 2016 +0000
@@ -3268,7 +3268,7 @@
                 case "letter":
                     return String.fromCharCode((index + offset) % 26 + 97);
                 case "capital":
-                    return String.fromCharCode((index + offset) % 26 + 66);
+                    return String.fromCharCode((index + offset) % 26 + 65);
                 case "number":
                     return String(index + offset);
                 default: