Sha256: 97d36d47af88c70c0dc6802e74cdb294d8f74c528804dba11e42c7f99bc2e616
Contents?: true
Size: 581 Bytes
Versions: 5
Compression:
Stored size: 581 Bytes
Contents
# frozen_string_literal: true module BootstrapForm module Inputs module TimeZoneSelect extend ActiveSupport::Concern include Base included do def time_zone_select_with_bootstrap(method, priority_zones=nil, options={}, html_options={}) form_group_builder(method, options, html_options) do input_with_error(method) do time_zone_select_without_bootstrap(method, priority_zones, options, html_options) end end end bootstrap_alias :time_zone_select end end end end
Version data entries
5 entries across 5 versions & 2 rubygems