Module ThickboxHelper
In: app/helpers/thickbox_helper.rb

Methods

Public Instance methods

[Source]

    # File app/helpers/thickbox_helper.rb, line 8
 8:   def thickbox_close_button(title)
 9:     button_to_function(:close, title, 'tb_remove();')
10:   end

[Source]

   # File app/helpers/thickbox_helper.rb, line 5
5:   def thickbox_inline_popup_icon(type, title, id, options = {})
6:     icon_button(type, title, "#TB_inline?height=300&width=500&inlineId=#{id}&modal=true", {:class => "thickbox"}.merge(options))
7:   end

[Source]

   # File app/helpers/thickbox_helper.rb, line 2
2:   def thickbox_inline_popup_link(title, id, options = {})
3:     link_to(title, "#TB_inline?height=300&width=500&inlineId=#{id}&modal=true", {:class => 'thickbox'}.merge(options))
4:   end

[Validate]