Skip to content

Commit f2b707c

Browse files
authored
Correct reference to SassC::Script::Value::String
This part of the code was still referencing an older Sass Ruby constant path Fixes #128
1 parent cd6e779 commit f2b707c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/sassc/rails/functions.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
module Sprockets
66
module SassFunctions
77
def asset_data_url(path)
8-
SassC::Script::String.new("url(" + sprockets_context.asset_data_uri(path.value) + ")")
8+
::SassC::Script::Value::String.new("url(" + sprockets_context.asset_data_uri(path.value) + ")")
99
end
1010
end
1111
end

0 commit comments

Comments
 (0)