Sha256: 4b5eb5b6cadad89d16dd8b3fb54f16c913455e110e0e52473aab1806c5b8967b

Contents?: true

Size: 653 Bytes

Versions: 3

Compression:

Stored size: 653 Bytes

Contents

# This controller displays working examples of the helpers.
#
# After installation, restart your rails server and point your browser to:
#
#   http://<app_name>/bootstrap_view_helpers
#
class BootstrapViewHelpersController < ApplicationController
  layout 'bootstrap_view_helpers'
  
  def index
  end
  
  def flash_helper
    flash.now[:notice] = ":notice is mapped to :info"
    flash.now[:alert] = ":alert is mapped to :error"
    flash.now[:warning] = 'Unrecognized types use Bootstrap default'
    flash.now[:success] = "The operation was a success"
    flash.now[:error] = "There was an error"
    flash.now[:info] = "Here is some info"
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bootstrap-view-helpers-0.0.14 app/controllers/bootstrap_view_helpers_controller.rb
bootstrap-view-helpers-0.0.13 app/controllers/bootstrap_view_helpers_controller.rb
bootstrap-view-helpers-0.0.12 app/controllers/bootstrap_view_helpers_controller.rb