Module: CssPercentable
Instance Method Summary collapse
Instance Method Details
#%(other = nil) ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 |
# File 'lib/glimmer-dsl-css/ext/css_percentable.rb', line 2 def %(other = nil) if other.nil? if zero? to_s else "#{self}%" end else super(other) end end |