Add param to QueryParam info
Change-Id: Ic830b5519fc86b20528119e786a7bbf37d822a99
diff --git a/Changes b/Changes
index dc1d6fc..a391ef3 100755
--- a/Changes
+++ b/Changes
@@ -1,4 +1,4 @@
-0.43 2021-09-09
+0.43 2021-09-15
- New menu class that has an entry at the very end,
similar to the input text prefix,
that is always available. (lerepp)
@@ -26,6 +26,7 @@
- Plugin::TagHelpers::ContenBlock now on CPAN.
- Fix navigation behaviour for folded subdirectories.
- Introduce legacy redirects for tutorial links.
+ - Improve QueryParam response.
0.42 2021-06-18
- Added GitHub based CI for perl.
diff --git a/dev/js/src/plugin/server.js b/dev/js/src/plugin/server.js
index d86eebc..4027f8d 100644
--- a/dev/js/src/plugin/server.js
+++ b/dev/js/src/plugin/server.js
@@ -498,10 +498,11 @@
// Supported in all modern browsers
var p = new URLSearchParams(window.location.search);
let v = d["value"] = {};
+ v["param"] = p; // readonly
v["q"] = p.get('q');
v["ql"] = p.get('ql');
v["cq"] = p.get('cq');
- };
+ }
};
// data needs to be mirrored