Module: AppHelper

Defined in:
app/helpers/app_helper.rb

Instance Method Summary collapse

Instance Method Details

#f7_app(options = {}, &block) ⇒ Object

Provides the skeleton application layout ready to be customised



3
4
5
6
7
8
9
10
# File 'app/helpers/app_helper.rb', line 3

def f7_app(options={}, &block)
  output = []
  output << statusbar_overlay_div
  output << panel_overlay_div
  output << capture(&block)
  
  output.join("\n").html_safe
end