travis-web/assets/scripts/app/controllers/flash.coffee
2012-10-09 16:15:18 +02:00

9 lines
243 B
CoffeeScript

Travis.FlashController = Ember.ArrayController.extend
init: ->
@_super.apply this, arguments
@set('content', Ember.A())
pushObjects: (objects) ->
Ember.run.later(this, (-> @removeObjects(objects)), 10000)
@_super(objects)