Remove & from old-style less combinators in the parser
This commit is contained in:
parent
e1a484018f
commit
1eaf7e4fbf
@ -722,7 +722,7 @@ carto.Parser = function Parser(env) {
|
||||
var name, value, c = input.charAt(i);
|
||||
save();
|
||||
|
||||
if (c === '.' || c === '#' || c === '&') { return }
|
||||
if (c === '.' || c === '#') { return; }
|
||||
|
||||
if (name = $(this.variable) || $(this.property)) {
|
||||
value = $(this.value);
|
||||
|
Loading…
Reference in New Issue
Block a user