FIX: Deprecation warnings on Ember.js for render without quotes.

This commit is contained in:
Robin Ward 2014-04-15 11:25:22 -04:00
parent 73cc722ed5
commit 2f9bb6b88f
4 changed files with 12 additions and 12 deletions

View File

@ -1,7 +1,7 @@
{{render header}} {{render "header"}}
<div id='main-outlet'> <div id='main-outlet'>
{{outlet}} {{outlet}}
</div> </div>
{{render modal}} {{render "modal"}}

View File

@ -2,7 +2,7 @@
<div class='contents'> <div class='contents'>
{{render composerMessages}} {{render "composerMessages"}}
<div class='control'> <div class='control'>
<a href='#' class='toggler' {{action toggle bubbles=false}} title='{{i18n composer.toggler}}'></a> <a href='#' class='toggler' {{action toggle bubbles=false}} title='{{i18n composer.toggler}}'></a>
@ -48,7 +48,7 @@
{{#if model.archetype.hasOptions}} {{#if model.archetype.hasOptions}}
<button class='btn' {{action showOptions}}>{{i18n topic.options}}</button> <button class='btn' {{action showOptions}}>{{i18n topic.options}}</button>
{{/if}} {{/if}}
{{render additionalComposerButtons model}} {{render "additionalComposerButtons" model}}
{{/unless}} {{/unless}}
</div> </div>
{{/if}} {{/if}}

View File

@ -108,15 +108,15 @@
</li> </li>
</ul> </ul>
{{render search}} {{render "search"}}
{{render notifications notifications}} {{render "notifications" notifications}}
{{#if view.renderSiteMap}} {{#if view.renderSiteMap}}
{{render siteMap}} {{render "siteMap"}}
{{/if}} {{/if}}
{{ render userDropdown }} {{render "userDropdown"}}
</div> </div>
</div> </div>

View File

@ -142,15 +142,15 @@
{{/if}} {{/if}}
{{/if}} {{/if}}
{{render share}} {{render "share"}}
{{render posterExpansion}} {{render "posterExpansion"}}
{{#if currentUser.enable_quoting}} {{#if currentUser.enable_quoting}}
{{render quoteButton}} {{render "quoteButton"}}
{{/if}} {{/if}}
{{#if currentUser.canManageTopic}} {{#if currentUser.canManageTopic}}
{{render topicAdminMenu content}} {{render "topicAdminMenu" content}}
{{/if}} {{/if}}
{{customHTML "bottom"}} {{customHTML "bottom"}}