mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-17 11:41:02 +00:00
5 lines
121 B
JavaScript
5 lines
121 B
JavaScript
function make_notification() {
|
|
var r = new XMLHttpRequest();
|
|
r.open("GET", '/test_make/', true);
|
|
r.send();
|
|
}
|