Skip to content

Commit

Permalink
[Installer] Fixed a bug that caused the output after installing to no…
Browse files Browse the repository at this point in the history
…t display the conditional comments.
  • Loading branch information
chriseppstein committed Jul 7, 2009
1 parent 94e9696 commit 48a0356
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/compass/installers/rails.rb
Expand Up @@ -121,8 +121,8 @@ def stylesheet_links
if stylesheet.options[:media]
ss_line += ", :media => '#{stylesheet.options[:media]}'"
end
if stylesheet.options[:ie]
ss_line = " /[if IE]\n " + ss_line
if stylesheet.options[:condition]
ss_line = " /[if #{stylesheet.options[:condition]}]\n " + ss_line
end
html << ss_line + "\n"
end
Expand Down

0 comments on commit 48a0356

Please sign in to comment.