summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRaindropsSys <contact@minteck.org>2023-07-02 18:27:10 +0200
committerRaindropsSys <contact@minteck.org>2023-07-02 18:27:10 +0200
commit2b6af86904d4fa939d19b785fe456a861257c1b8 (patch)
treed1948604697372c5c7da3b4e9d5d092810b5301e /core
parent611753304d0f72f6c61337202659b79596bd7784 (diff)
downloadkirinos-2b6af86904d4fa939d19b785fe456a861257c1b8.tar.gz
kirinos-2b6af86904d4fa939d19b785fe456a861257c1b8.tar.bz2
kirinos-2b6af86904d4fa939d19b785fe456a861257c1b8.zip
Updated 3 files and added docs/Installing-mangoOS-on-bare-metal.md (automated)
Diffstat (limited to 'core')
-rw-r--r--core/launcher/index.html4
-rw-r--r--core/power/index.html4
-rw-r--r--core/status/index.html4
3 files changed, 9 insertions, 3 deletions
diff --git a/core/launcher/index.html b/core/launcher/index.html
index 9f61577..233bfcb 100644
--- a/core/launcher/index.html
+++ b/core/launcher/index.html
@@ -54,7 +54,9 @@
<body>
<script>
window.addEventListener('error', (event, source, lineno, colno, error) => {
- parent.transferError(error);
+ parent.transferError([
+ event, source, lineno, colno, error
+ ]);
return false;
});
diff --git a/core/power/index.html b/core/power/index.html
index 9a96add..b177802 100644
--- a/core/power/index.html
+++ b/core/power/index.html
@@ -64,7 +64,9 @@
<body>
<script>
window.addEventListener('error', (event, source, lineno, colno, error) => {
- parent.transferError(error);
+ parent.transferError([
+ event, source, lineno, colno, error
+ ]);
return false;
});
diff --git a/core/status/index.html b/core/status/index.html
index 066532f..e0094c8 100644
--- a/core/status/index.html
+++ b/core/status/index.html
@@ -38,7 +38,9 @@
<body>
<script>
window.addEventListener('error', (event, source, lineno, colno, error) => {
- parent.transferError(error);
+ parent.transferError([
+ event, source, lineno, colno, error
+ ]);
return false;
});