Top Level Namespace

Defined Under Namespace

Modules: ApplicationHelper, Odin, R4 Classes: Config, Starter, UsersController

Constant Summary collapse

E =
Element

Instance Method Summary collapse

Instance Method Details

#ef(text) ⇒ Object



3
4
5
# File 'lib/r4/template/app/assets/javascripts/main.js.rb', line 3

def ef text
  Element.find text
end

#show_alert(header, text) ⇒ Object



7
8
9
10
11
# File 'lib/r4/template/app/assets/javascripts/main.js.rb', line 7

def show_alert header, text
   ef('#alert_header').html = header
   ef('#alert_body').html = text
   ef('#alert_window').show
end