Merge branch '366-notification-cross-click' into 'develop'

Resolve "Clicking on the cross on notification does not close them"

Closes #366

See merge request funkwhale/funkwhale!323
This commit is contained in:
Eliot Berriot 2018-07-13 12:18:34 +00:00
commit 2e9fd9c3c7
2 changed files with 1 additions and 3 deletions

View File

@ -0,0 +1 @@
Fix notifications not closing when clicking on the cross (#366)

View File

@ -12,9 +12,6 @@ import $ from 'jquery'
export default {
mounted () {
let self = this
$(this.$el).find('.close.icon').on('click', function () {
$(self.$el).transition('fade', 125)
})
$(this.$el).on('click', function () {
$(self.$el).transition('fade', 125)
})