module Golden::Theme::Foundation::ButtonsHelper

Public Instance Methods

foundation_button_group(options = {}) click to toggle source
# File lib/golden/theme/foundation/buttons_helper.rb, line 3
def foundation_button_group options = {}, &block
  html_class = options.delete :class
  options = {
    class: "button-group #{html_class}".strip
  }.deep_merge options
  foundation_ul_tag options, &block
end