格子状のレイアウトを行うためのセルを制御する。
セルの高さを定める。
[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]