aboutsummaryrefslogtreecommitdiffstats
path: root/webroot
diff options
context:
space:
mode:
Diffstat (limited to 'webroot')
-rw-r--r--webroot/.static/js/lxrng-funcs.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/webroot/.static/js/lxrng-funcs.js b/webroot/.static/js/lxrng-funcs.js
index 24e956d..c735ed4 100644
--- a/webroot/.static/js/lxrng-funcs.js
+++ b/webroot/.static/js/lxrng-funcs.js
@@ -17,6 +17,14 @@
// The full GNU General Public License is included in this distribution
// in the file called COPYING.
+function encode_lxrng(str) {
+ return encodeURIComponent(str);
+}
+
+function decode_lxrng(str) {
+ return str;
+}
+
function popup_search(searchform) {
searchform = document.getElementById(searchform);
searchform.target = 'popup_' + window.name;