Module: Haml::Filters::DeferJS

Includes:
Base
Defined in:
lib/rbbt/rest/common/misc.rb

Instance Method Summary collapse

Instance Method Details

#render(text) ⇒ Object



292
293
294
295
296
297
298
299
300
301
302
303
# File 'lib/rbbt/rest/common/misc.rb', line 292

def render(text)
  step_path = Thread.current["step_path"]
  defer_text =<<-EOF
%script
:plain
  defer(function(step_path){

#{text.gsub(/^/,"      ")}
  }, '#{step_path}')
EOF
  Haml::Engine.new(defer_text).to_html 
end