changed quotes to use syntactic sugar

This commit is contained in:
Scott Davis 2011-04-23 10:17:26 -04:00
parent fec367d60c
commit 9c8522be72
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ GIT
PATH PATH
remote: . remote: .
specs: specs:
compass (0.11.beta.7.ac623c6) compass (0.11.beta.7.fec367d)
chunky_png (~> 1.1.0) chunky_png (~> 1.1.0)
fssm (~> 0.2) fssm (~> 0.2)
sass (>= 3.1.0.alpha.249) sass (>= 3.1.0.alpha.249)

View File

@ -444,7 +444,7 @@ module Compass::SassExtensions::Functions::GradientSupport
def linear_svg(color_stops, x1, y1, x2, y2) def linear_svg(color_stops, x1, y1, x2, y2)
transform = '' transform = ''
if angle? if angle?
transform = " gradientTransform = \"rotate(#{position_or_angle.value})\"" transform = %Q{ gradientTransform = "rotate(#{position_or_angle.value})"}
end end
gradient = %Q{<linearGradient id="grad" gradientUnits="userSpaceOnUse" x1="#{x1}" y1="#{y1}" x2="#{x2}" y2="#{y2}"#{transform}>#{color_stops_svg(color_stops)}</linearGradient>} gradient = %Q{<linearGradient id="grad" gradientUnits="userSpaceOnUse" x1="#{x1}" y1="#{y1}" x2="#{x2}" y2="#{y2}"#{transform}>#{color_stops_svg(color_stops)}</linearGradient>}
svg(gradient) svg(gradient)