Fix close button on flash messages
This commit is contained in:
parent
df74b618ce
commit
2b86e93d13
|
@ -30,11 +30,13 @@ Travis.FlashController = Ember.ArrayController.extend
|
|||
@get('flashes').unshiftObject(msg)
|
||||
Ember.run.later(this, (-> @get('flashes.content').removeObject(msg)), 15000)
|
||||
|
||||
close: (msg) ->
|
||||
if msg instanceof Travis.Broadcast
|
||||
msg.setSeen()
|
||||
@notifyPropertyChange('unseenBroadcasts')
|
||||
else
|
||||
@get('flashes').removeObject(msg)
|
||||
|
||||
actions:
|
||||
close: (msg) ->
|
||||
if msg instanceof Travis.Broadcast
|
||||
msg.setSeen()
|
||||
@notifyPropertyChange('unseenBroadcasts')
|
||||
else
|
||||
@get('flashes').removeObject(msg)
|
||||
|
||||
@close(msg)
|
||||
|
|
Loading…
Reference in New Issue
Block a user