15 lines
258 B
JavaScript
15 lines
258 B
JavaScript
|
const Notifications = {
|
||
|
notifications: null,
|
||
|
fetch: render => {
|
||
|
$.ajax({
|
||
|
url: '/notifications.json',
|
||
|
success: function(data) {
|
||
|
Notifications.notifications = data
|
||
|
render()
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Notifications
|