Module: Merb::JqueryMixin

Defined in:
lib/merb-jquery.rb

Instance Method Summary collapse

Instance Method Details

#jquery(string = nil, &blk) ⇒ Object



3
4
5
6
7
8
9
10
11
# File 'lib/merb-jquery.rb', line 3

def jquery(string=nil, &blk)
  if string 
    throw_content(:for_jquery, string)
  elsif block_given?
    throw_content(:for_jquery, &blk)
  else
    catch_content :for_jquery
  end
end