Rewrite template.js.erb into template.js.slim

5.7k Views Asked by At

What would the below js.erb template look like when rewritten into slim?

$('#new_reservation').hide().after('<%= j render("new_reservation") %>');
3

There are 3 best solutions below

1
On BEST ANSWER
| $('#new_reservation').hide().after('
= j render("new_reservation")
| ');

you can check this gem for further simple conversions

0
On

Slim provides a multiline approach:

|
  var html = "#{ j render("new_reservation") }";
  $('#new_reservation').hide().after(html);
0
On

lately I bumped into same problem

| $('#new_reservation').hide().after('#{= j render("new_reservation")}');

maybe for someone will be helpful Rails 4.2 Ruby 2.3