www

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

commit d8c06eb29366e1063f29995519d5c6810d753253
parent 4c9c6da10cff4267e0f96ef8d60a61066f9a6824
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Sat, 27 Apr 2013 07:44:45 -0400

Make MathML fontsize only be allowed if fontsize is 'all'

Diffstat:
Munpacked/extensions/Safe.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unpacked/extensions/Safe.js b/unpacked/extensions/Safe.js @@ -311,7 +311,7 @@ break; case "fontsize": - value = (ALLOW.fontsize ? mml.fontsize: null); + value = (ALLOW.fontsize === "all" ? mml.fontsize: null); break; case "style":