Commit f2b98385a10c009bd87e88197f04eff21fa7abb3

Authored by Daniela Feitosa
1 parent cc98da8e

Replacing '' by "" to display \n

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
app/views/layouts/application-ng.rhtml
... ... @@ -30,7 +30,7 @@
30 30 <%=
31 31 @plugins.map(:head_ending).collect do |content|
32 32 content.respond_to?(:call) ? content.call : content
33   - end.join('\n')
  33 + end.join("\n")
34 34 %>
35 35 </head>
36 36 <body class="<%=
... ... @@ -45,7 +45,7 @@
45 45 <%=
46 46 @plugins.map(:body_beginning).collect do |content|
47 47 content.respond_to?(:call) ? content.call : content
48   - end.join('\n')
  48 + end.join("\n")
49 49 %>
50 50  
51 51 <div id="wrap-1">
... ...