mirror of
https://github.com/less/less.js.git
synced 2026-04-09 03:00:20 -04:00
fix regression in support for font property. fixes #1429
This commit is contained in:
@@ -35,7 +35,7 @@ tree.Rule.prototype = {
|
||||
},
|
||||
eval: function (env) {
|
||||
var strictMathBypass = false;
|
||||
if (this.name === "font" && env.strictMath === false) {
|
||||
if (this.name === "font" && !env.strictMath) {
|
||||
strictMathBypass = true;
|
||||
env.strictMath = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user