www

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

commit 5788a76dcf99a51074d2ec6c996d4cbf867b9481
parent 7e5e6a90d30e50cd819e259fd99245ccd5a36636
Author: Emily Eisenberg <emily@khanacademy.org>
Date:   Sat, 10 Aug 2013 03:23:46 -0700

Do bin -> ord for all the correct types

Fixes T1303

Auditors: alpert

Diffstat:
MbuildTree.js | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/buildTree.js b/buildTree.js @@ -57,7 +57,8 @@ var groupTypes = { var atoms = prevAtom.value.value; prevAtom = atoms[atoms.length - 1]; } - if (!prev || utils.contains(["bin", "open", "rel"], prevAtom.type)) { + if (!prev || utils.contains(["bin", "open", "rel", "op", "punct"], + prevAtom.type)) { group.type = "ord"; className = "mord"; }