Page MenuHomeDevCentral

D2712.id6871.diff
No OneTemporary

D2712.id6871.diff

diff --git a/config.yml b/config.yml
--- a/config.yml
+++ b/config.yml
@@ -36,3 +36,4 @@
- "src/assets/js/docker-registry.js"
- "src/assets/js/servers-log.js"
- "src/assets/js/salt-config.js"
+ - "src/assets/js/notification.js"
diff --git a/src/assets/js/notification.js b/src/assets/js/notification.js
new file mode 100644
--- /dev/null
+++ b/src/assets/js/notification.js
@@ -0,0 +1,10 @@
+var btn = document.getElementById("test");
+window.addEventListener("load", (event) => {
+ let notif = new XMLHttpRequest();
+ notif.getResponseHeader('text/event-stream')
+ notif.onprogress = function() {
+ document.getElementById("result").innerHTML = this.responseText;
+ }
+ notif.open("GET", "http://192.168.1.44:5000");
+ notif.send();
+})
diff --git a/src/pages/notification/index.html b/src/pages/notification/index.html
new file mode 100644
--- /dev/null
+++ b/src/pages/notification/index.html
@@ -0,0 +1,21 @@
+---
+title: Notification
+app: notification
+---
+
+<script src="../assets/js/notification.js"></script>
+
+<section class="row">
+ <div class="large-12 columns">
+ <div class="callout">
+ <p><strong>Nasqueron infrastructure servers</strong> support our budding community of creative people, writers, developers and thinkers.</p>
+ <p>This page permit to see the notification from the notification center</p>
+ </div>
+
+ <div id="result" class="large-9 columns">
+
+ </div>
+
+
+ </div>
+</section>

File Metadata

Mime Type
text/plain
Expires
Fri, Apr 4, 10:39 (4 h, 16 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2539698
Default Alt Text
D2712.id6871.diff (1 KB)

Event Timeline