cortex-cms/cortex

View on GitHub
app/cells/cortex/wizard/column_cell.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cortex
  module Wizard
    class ColumnCell < Cortex::ApplicationCell
      property :heading
      property :grid_width
      property :display
      property :elements
      property :description

      def show
        render
      end

      private

      def grid_class
        "mdl-cell--#{grid_width}-col"
      end
    end
  end
end