15 lines
333 B
CoffeeScript
15 lines
333 B
CoffeeScript
require 'helpers/helpers'
|
|
|
|
colorForState = Travis.Helpers.colorForState
|
|
|
|
View = Travis.View.extend
|
|
classNameBindings: ['color', 'loading']
|
|
buildBinding: 'controller.build'
|
|
loadingBinding: 'controller.loading'
|
|
|
|
color: (->
|
|
colorForState(@get('build.state'))
|
|
).property('build.state')
|
|
|
|
Travis.BuildView = View
|