Sha256: 501da4017a262858375b81e5a7cf1393f11ac7981a35bb6f832332c7f389bca8
Contents?: true
Size: 1.18 KB
Versions: 1
Compression:
Stored size: 1.18 KB
Contents
module TextileToolbar def textile_area(object_name, method, options={}) disable = options.delete(:disable) || {} toolbar = textile_toolbar(options[:id] || "#{object_name}_#{method}", disable) toolbar + text_area(object_name, method, options) end def textile_toolbar(id, disable) html = link_to_function(image_tag("textile_toolbar/bold.png", :size => "23x22", :alt => "Make selection bold"), "surround_selection('#{id}', '*', '*')") html << " " html << link_to_function(image_tag("textile_toolbar/italic.png", :size => "23x22", :alt => "Make selection italic"), "surround_selection('#{id}', '_', '_')") html << " " html << link_to_function(image_tag("textile_toolbar/hyperlink.png", :size => "23x22", :alt => "Make hyperlink"), "insert_hyperlink('#{id}')") html << " " unless disable == :image html << link_to_function(image_tag("textile_toolbar/image.png", :size => "23x22", :alt => "Insert image"), "insert_image('#{id}')") html << " " end html << "<small>" << link_to("Textile", "http://hobix.com/textile/", :target => "_blank") << " enabled</small>" end end ActionView::Base.send :include, TextileToolbar
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pelargir-textile_toolbar-0.5 | lib/textile_toolbar.rb |