Merge pull request #345 from tms/fatten-up-static-pages
Don't double-up on #main-outlet when static content is preloaded
This commit is contained in:
commit
3287dcf754
|
@ -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