module SuperInteraction::BootstrapHelper

Public Instance Methods

js() { |i| ... } click to toggle source
# File lib/super_interaction/bootstrap_helper.rb, line 3
def js(&block)
  i = Bootstrap.new(self)
  yield(i) if block_given?
  i
end