summaryrefslogtreecommitdiffstats
path: root/common/html-coverpage/coverpage.js
diff options
context:
space:
mode:
Diffstat (limited to 'common/html-coverpage/coverpage.js')
-rw-r--r--common/html-coverpage/coverpage.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/common/html-coverpage/coverpage.js b/common/html-coverpage/coverpage.js
new file mode 100644
index 0000000..4655c29
--- /dev/null
+++ b/common/html-coverpage/coverpage.js
@@ -0,0 +1,13 @@
+/*!
+ * Copyright 2017 Chris Johns <chrisj@rtems.org>
+ */
+
+/*
+ * Embed the XML catalogue in this JS code to get around the Chrome on Windows
+ * security "feature" where loading of a local disk file under the same path as
+ * the HTML Chrome just loaded from disk is not allowed.
+ */
+function coverPageCatalogue() {
+ xml = '@CATALOGUE';
+ paintCatalogue($.parseXML(xml));
+}