mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 19:53:40 +08:00
10 lines
251 B
Ruby
10 lines
251 B
Ruby
|
module Stylesheet
|
||
|
module ScssFunctions
|
||
|
def asset_url(path)
|
||
|
SassC::Script::String.new("url('#{ActionController::Base.helpers.asset_path(path.value)}')")
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
::SassC::Script::Functions.send :include, Stylesheet::ScssFunctions
|