Sha256: 30ebfdcc09b444b06b7aa1ec83f679d66a0c9e4f614599a88b82ecd56ba4d441

Contents?: true

Size: 705 Bytes

Versions: 5

Compression:

Stored size: 705 Bytes

Contents

module Lightbox2Helpers::IncludesHelper
  # returns the selected lightbox2_helpers stylesheet (not an array)
  def lightbox2_helpers_stylesheets()
    "lightbox2_helpers/lightbox.css"
  end

  # returns an array of javascripts needed (array)
  def lightbox2_helpers_javascripts()
    ["lightbox2_helpers/builder.js",
     "lightbox2_helpers/lightbox.js"]
  end

  # returns html necessary to load javascript and css to make lightbox2_helpers work
  def lightbox2_helpers_includes(*args)
    return "" if @lhs_already_included
    @lhs_already_included=true
    
    javascript_include_tag(*lightbox2_helpers_javascripts ) + "\n" +
    stylesheet_link_tag(*lightbox2_helpers_stylesheets ) + "\n"
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
splendeo-lightbox2_helpers-0.5.8 lib/lightbox2_helpers/includes_helper.rb
splendeo-lightbox2_helpers-0.5.9 lib/lightbox2_helpers/includes_helper.rb
splendeo-lightbox2_helpers-0.6.0 lib/lightbox2_helpers/includes_helper.rb
splendeo-lightbox2_helpers-0.6.1 lib/lightbox2_helpers/includes_helper.rb
splendeo-lightbox2_helpers-0.6.2 lib/lightbox2_helpers/includes_helper.rb