class Sass::Script::List

Public Instance Methods

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