Created
June 7, 2010 16:20
Revisions
-
rkh created this gist
Jun 7, 2010 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ module VarAccessor Sass::Script::Functions.send :include, self def self.variables @variables ||= {} end def self.set(values = {}) variables.merge! values end def variable(value) VarAccessor.variables[:"#{value}"] end def url_for(value) "url(#{variable(value)})" end end VarAccessor.set :background_image => @company.settings.banner.url This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ #header background: url_for('background_image')