You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Rails 3.1.3 and compass' version is 0.12.1,compass-bootstrap's version is 0.1.3.When I run "assets:precompile" it throw a Syntax Error out.
wrong number of arguments (1 for 0) for 'e'
in _patterns.scss
transition(e('opacity .3s linear, top .3s ease-out')
The text was updated successfully, but these errors were encountered:
I am assuming the e-function is a typo left from the LESS "e" function.
The e function in Compass is without arguments and returns the mathematical E constant (Euler's number). In LESS it "escapes" the string as an argument. This is very similar to the SASS "unquote" function, so I am guessing that you need to change e('...') to unquote('...').
I am using Rails 3.1.3 and compass' version is 0.12.1,compass-bootstrap's version is 0.1.3.When I run "assets:precompile" it throw a Syntax Error out.
wrong number of arguments (1 for 0) for 'e'
in _patterns.scss
transition(e('opacity .3s linear, top .3s ease-out')
The text was updated successfully, but these errors were encountered: