Sha256: d06868763cd2817f16cab5936ce45ea9a7139866b884475ea96223daa7602676
Contents?: true
Size: 610 Bytes
Versions: 2
Compression:
Stored size: 610 Bytes
Contents
require_dependency "express_ui/application_controller" module ExpressUi class UicomponentsController < ApplicationController layout "express_ui/styleguide" before_action :load_collection helper_method :render_to_string def index end def master_detail_scroll end def master_detail_fixed end def master_detail_sidebar end def content_and_sidebar end def half_width end def full_width end private def load_collection @collection = ["one", "two", "three"] end def collection @collection end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
express_ui-0.5.2 | app/controllers/express_ui/uicomponents_controller.rb |
express_ui-0.5.1 | app/controllers/express_ui/uicomponents_controller.rb |