This commit is contained in:
syuilo 2020-02-06 22:25:45 +09:00
parent 169f3ed541
commit 568ecd9477
1 changed files with 0 additions and 13 deletions

View File

@ -36,19 +36,6 @@ export default Vue.extend({
mixins: [
paging({
onPrepend: (self, note) => {
//
if (document.hidden) {
if ('Notification' in window && Notification.permission === 'granted') {
new Notification(getUserName(note.user), {
body: getNoteSummary(note),
icon: note.user.avatarUrl,
tag: 'newNote'
});
}
}
},
before: (self) => {
self.$emit('before');
},