Skip to content
This repository has been archived by the owner on Jan 20, 2020. It is now read-only.

Commit

Permalink
Fix settings timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
ttsvetko committed May 3, 2016
1 parent f65640f commit 90cc24c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Notification.js
Expand Up @@ -68,7 +68,7 @@
'silent': { value: Boolean(options.silent) },
'tag': { value: String(options.tag || '') },
'title': { value: String(title) },
'timestamp': (new Date).getTime()
'timestamp': { value: (new Date).getTime() }
});
}
Object.defineProperty(Notification, 'permission', {
Expand Down

0 comments on commit 90cc24c

Please sign in to comment.