Module: Redditor::FileapiHelper
- Defined in:
- app/helpers/redditor/fileapi_helper.rb
Instance Method Summary collapse
Instance Method Details
#fileapi(url = nil) ⇒ Object
5 6 7 8 9 10 11 12 13 14 |
# File 'app/helpers/redditor/fileapi_helper.rb', line 5 def fileapi url=nil html = stylesheet_link_tag "redditor/fileapi/fileapi" html += javascript_include_tag "redditor/fileapi/mailru" if url.present? html += javascript_tag do %Q{FU.config.uploadUrl = "#{url}"}.html_safe end end content_for(:js, html) end |