Don't use Handlebars.compile, ember-cli includes only runtime for performance

This commit is contained in:
Piotr Sarnacki 2015-02-03 20:48:02 +01:00
parent e00d0b00a3
commit f82025c6d5
10 changed files with 10 additions and 5 deletions

View File

@ -27,7 +27,7 @@ label = (options) ->
options.hashTypes.for = 'STRING'
options.hashContexts.for = this
if options.hash.content
options.fn = Ember.Handlebars.compile("{{view.content}}")
view = view.extend(templateName: 'helpers/label')
Ember.Handlebars.helpers.view.call(this, view, options)

View File

@ -2,7 +2,7 @@
ErrorsView = Ember.View.extend
tagName: 'span'
template: Ember.Handlebars.compile("{{#each view.errors}}{{message}}{{/each}}")
templateName: 'helpers/travis-errors'
classNames: ['error']
classNameBindings: ['codes']
attributeBindings: ['style']

View File

@ -0,0 +1 @@
<div class="loading"><span>Loading</span></div>

View File

@ -0,0 +1 @@
{{view.content}}

View File

@ -0,0 +1 @@
{{#each view.errors}}{{message}}{{/each}}

View File

@ -0,0 +1 @@
<div class="loading"><span>Loading</span></div>

View File

@ -0,0 +1 @@
{{view.label}}

View File

@ -7,7 +7,7 @@ View = Ember.CollectionView.extend
tagName: 'ul'
emptyView: Ember.View.extend
template: Ember.Handlebars.compile('<div class="loading"><span>Loading</span></div>')
templateName: 'accounts-list/empty'
itemViewClass: Ember.View.extend
accountBinding: 'content'

View File

@ -6,7 +6,7 @@ View = Ember.CollectionView.extend
tagName: 'ul'
emptyView: Ember.View.extend
template: Ember.Handlebars.compile('<div class="loading"><span>Loading</span></div>')
templateName: 'repos-list/empty'
itemViewClass: Ember.View.extend
repoBinding: 'content'

View File

@ -6,7 +6,7 @@ View = Ember.View.extend
showMore: true
attributeBindings: ['disabled']
isLoadingBinding: 'controller.isLoading'
template: Ember.Handlebars.compile('{{view.label}}')
templateName: 'show-more-button'
disabledBinding: 'isLoading'