class Sass::Script::List

Public Instance Methods

has_aspect?() click to toggle source
# File lib/compass/core/sass_extensions/monkey_patches/browser_support.rb, line 114
def has_aspect?
  children.any? {|child| child.respond_to?(:has_aspect?) && child.has_aspect? }
end
supports?(aspect) click to toggle source
# File lib/compass/core/sass_extensions/monkey_patches/browser_support.rb, line 110
def supports?(aspect)
  children.any? {|child| child.respond_to?(:supports?) && child.supports?(aspect) }
end