remove coffee file

This commit is contained in:
Lisa P 2016-01-05 12:57:04 +01:00
parent f5211f1fdc
commit 4edd1feaad
2 changed files with 2 additions and 51 deletions

View File

@ -1,49 +0,0 @@
`import Ember from 'ember'`
StatusIconComponent = Ember.Component.extend
tagName: 'span'
classNames: ['status-icon', 'icon']
classNameBindings: ['status']
attributeBindings: ['label:aria-label','label:title']
label: (->
"Job #{@get('status')}"
).property('status')
hasPassed: (->
@get('status') == 'passed' || @get('status') == 'accepted'
).property('status')
hasFailed: (->
@get('status') == 'failed' || @get('status') == 'rejected'
).property('status')
hasErrored: (->
@get('status') == 'errored'
).property('status')
wasCanceled: (->
@get('status') == 'canceled'
).property('status')
isRunning: (->
@get('status') == 'started' ||
@get('status') == 'queued' ||
@get('status') == 'booting' ||
@get('status') == 'received' ||
@get('status') == 'created'
).property('status')
isEmpty: (->
unless @get('status')
true
else
if @get('status') == ''
true
else
false
).property('status')
`export default StatusIconComponent`

View File

@ -4,10 +4,10 @@ export default Ember.Component.extend({
tagName: 'span',
classNames: ['status-icon', 'icon'],
classNameBindings: ['status'],
attributeBindings: ['label:aria-label', 'label:title']
attributeBindings: ['label:aria-label', 'label:title'],
label: function() {
return 'Job ' + this.get('status')
return 'Job ' + this.get('status');
}.property('status'),
hasPassed: function() {