Sha256: 80c605fa4f6735e625d6eaa94de977dd5cc696b6c3a7e93f81535e28d1c2f5eb
Contents?: true
Size: 456 Bytes
Versions: 16
Compression:
Stored size: 456 Bytes
Contents
# frozen_string_literal: true module Phlexi module Form module Structure module ManagesFields def has_file_input! if parent parent.has_file_input! else @has_file_input = true end end def has_file_input? if parent parent.has_file_input? else @has_file_input || false end end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems