Class CellController
In: app/controllers/cell_controller.rb
Parent: ApplicationController

格子状のレイアウトを行うためのセルを制御する。

Methods

Public Instance methods

セルの高さを定める。

[Source]

   # File app/controllers/cell_controller.rb, line 4
4:   def set_height
5:     Cell.update params[:id], :height => params[:value]
6:     render :text => params[:value]
7:   end

[Validate]