Commit f2b98385a10c009bd87e88197f04eff21fa7abb3
1 parent
cc98da8e
Exists in
master
and in
29 other branches
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,7 +30,7 @@ | ||
30 | <%= | 30 | <%= |
31 | @plugins.map(:head_ending).collect do |content| | 31 | @plugins.map(:head_ending).collect do |content| |
32 | content.respond_to?(:call) ? content.call : content | 32 | content.respond_to?(:call) ? content.call : content |
33 | - end.join('\n') | 33 | + end.join("\n") |
34 | %> | 34 | %> |
35 | </head> | 35 | </head> |
36 | <body class="<%= | 36 | <body class="<%= |
@@ -45,7 +45,7 @@ | @@ -45,7 +45,7 @@ | ||
45 | <%= | 45 | <%= |
46 | @plugins.map(:body_beginning).collect do |content| | 46 | @plugins.map(:body_beginning).collect do |content| |
47 | content.respond_to?(:call) ? content.call : content | 47 | content.respond_to?(:call) ? content.call : content |
48 | - end.join('\n') | 48 | + end.join("\n") |
49 | %> | 49 | %> |
50 | 50 | ||
51 | <div id="wrap-1"> | 51 | <div id="wrap-1"> |