From e4b6bace431a2ba5096b24f8b5658513f1f8b60d Mon Sep 17 00:00:00 2001 From: Lars Jung Date: Sun, 25 Mar 2012 01:09:35 +0100 Subject: [PATCH] Adds options to info page. --- src/_h5ai/index.html | 4 ++++ src/_h5ai/js/inc/splash.js | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/src/_h5ai/index.html b/src/_h5ai/index.html index 8399f13c..9d6c85b9 100644 --- a/src/_h5ai/index.html +++ b/src/_h5ai/index.html @@ -43,6 +43,10 @@ @lrsjng

+
+
+		
+
diff --git a/src/_h5ai/js/inc/splash.js b/src/_h5ai/js/inc/splash.js index 6fad503e..b0ea78a0 100644 --- a/src/_h5ai/js/inc/splash.js +++ b/src/_h5ai/js/inc/splash.js @@ -15,9 +15,14 @@ $this.replaceWith($a); }); }, + configFile = function () { + + $('#config-file').text(JSON.stringify(H5AI_CONFIG.options)); + }, init = function () { deobfuscate(); + configFile(); }; $(init);