aboutsummaryrefslogtreecommitdiffstats
path: root/webroot/.static/js/lxrng-funcs.js
diff options
context:
space:
mode:
authorArne Georg Gleditsch <argggh@lxr.linpro.no>2011-09-29 10:45:42 +0200
committerArne Georg Gleditsch <argggh@lxr.linpro.no>2011-09-29 10:45:42 +0200
commita844bad0235b0bf6309b37ba5255a5dfb7bd110a (patch)
tree15dc5b2d80666adb328a530e4cdd63510e86be27 /webroot/.static/js/lxrng-funcs.js
parent84fc580e278aefda62c537a05661db8ae39e55e0 (diff)
Fix fallout from 84fc580e278aefda62c537a05661db8ae39e55e0.
Diffstat (limited to 'webroot/.static/js/lxrng-funcs.js')
-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;