4
5
6
7
8
9
10
11
12
13
|
# File 'lib/g_form_submit_protector/view_helpers.rb', line 4
def g_form_submit_protector( *args )
return if Guilded::Guilder.instance.include_component?( :form_submit_protector ) options = args.
throw Guilded::Exception::GuildedException.new( ":selector is a required option" ) unless options.has_key?( :selector )
options[:selector] = 'form' if options[:selector] == :all
options.merge! :id => "form-submit-protector"
options.merge! :exclude_css => true
Guilded::Guilder.instance.add( :form_submit_protector, options, [ 'jquery/jquery-disable_on_submit-1.0.min.js' ] )
''
end
|