travis-web/app/helpers/humanize-state.coffee
2015-02-03 09:44:34 +01:00

11 lines
139 B
CoffeeScript

safe = Travis.Helpers.safe
fn = (state) ->
if state == 'received'
'booting'
else
state
Travis.Handlebars.humanizeState = fn