www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit c79fb5893686ac0b8c4d8ec33ea1b940d2e4a0c4
parent 157bfb0cf546a4843de13b1dbb06ed930517719d
Author: Kevin Barabash <kevinb@khanacademy.org>
Date:   Tue, 29 Dec 2015 10:21:44 -0800

Revert previous change to make \centerdot like \cdot

Summary:
Alpert alerted me to the fact that \centerdot and \cdot are
not the same despite what MathJax thinks.

Test Plan:
- make serve
- load http://localhost:7936/
- see the `a \centerdot b` produces a small, bottom-aligned square

Auditors: alpert emily

Diffstat:
Msrc/symbols.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/symbols.js b/src/symbols.js @@ -352,7 +352,7 @@ defineSymbol(math, ams, bin, "\u22cf", "\\curlywedge"); defineSymbol(math, ams, bin, "\u22ce", "\\curlyvee"); defineSymbol(math, ams, bin, "\u229d", "\\circleddash"); defineSymbol(math, ams, bin, "\u229b", "\\circledast"); -defineSymbol(math, main, bin, "\u22c5", "\\centerdot"); +defineSymbol(math, ams, bin, "\u22c5", "\\centerdot"); defineSymbol(math, ams, bin, "\u22ba", "\\intercal"); defineSymbol(math, ams, bin, "\u22d2", "\\doublecap"); defineSymbol(math, ams, bin, "\u22d3", "\\doublecup");