mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 03:10:46 -06:00
Don't double-up on #main-outlet when static content is rendered through Ember
This commit is contained in:
parent
dfafadfe41
commit
f46c819956
@ -18,7 +18,8 @@ Discourse.StaticController = Discourse.Controller.extend({
|
||||
$preloaded = $("noscript[data-path=\"" + path + "\"]");
|
||||
if ($preloaded.length) {
|
||||
text = $preloaded.text();
|
||||
text = text.replace(/<header[\s\S]*<\/header\>/, '');
|
||||
text = text.match(/<!-- preload-content: -->((?:.|[\n\r])*)<!-- :preload-content -->/);
|
||||
text = text[1];
|
||||
return this.set('content', text);
|
||||
} else {
|
||||
return jQuery.ajax({
|
||||
|
@ -40,7 +40,9 @@
|
||||
</div>
|
||||
</header>
|
||||
<div id="main-outlet" class="container">
|
||||
<!-- preload-content: -->
|
||||
<%= yield %>
|
||||
<!-- :preload-content -->
|
||||
</div>
|
||||
</noscript>
|
||||
</section>
|
||||
|
Loading…
Reference in New Issue
Block a user