module QuietLeightbox

File

quiet_leightbox.rb

(C)

Hipposoft 2009

Purpose

Only include Leightbox components if a view requires them.


16-Nov-2009 (ADH): Created.

Public Class Methods

included( base ) click to toggle source

Add in the class methods and establish the helper calls when the module gets included.

# File lib/quiet_leightbox/quiet_leightbox.rb, line 28
def self.included( base )
  base.extend( ClassMethods  )
  base.helper( QuietLeightboxHelper )
end