Controller = Ember.ArrayController.extend
init: ->
@_super.apply this, arguments
@tickables = []
tips: [
"Did you know that you can parallelize tests on Travis CI? Learn more"
"Did you know that you can split a build into several smaller pieces? Learn more"
"Did you know that you can skip a build? Learn more"
]
tip: (->
if tips = @get('tips')
tips[Math.floor(Math.random()*tips.length)]
).property().volatile()
Travis.SidebarController = Controller