mirror of
https://github.com/twbs/bootstrap-sass.git
synced 2022-11-09 12:27:02 -05:00
8 lines
No EOL
268 B
Ruby
8 lines
No EOL
268 B
Ruby
# This contains functions for use with a project *only* using Compass.
|
|
|
|
module Sass::Script::Functions
|
|
# Define image_path for Compass to allow use of sprites without url() wrapper.
|
|
def image_path(asset)
|
|
image_url(asset, Sass::Script::Bool.new(true))
|
|
end
|
|
end |