aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates
diff options
context:
space:
mode:
Diffstat (limited to 'gn2/wqflask/templates')
-rw-r--r--gn2/wqflask/templates/search_result_page.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/gn2/wqflask/templates/search_result_page.html b/gn2/wqflask/templates/search_result_page.html
index aad7fd99..334dbc77 100644
--- a/gn2/wqflask/templates/search_result_page.html
+++ b/gn2/wqflask/templates/search_result_page.html
@@ -238,9 +238,9 @@
description = data.description.slice(0, 200) + '...'
}
try {
- return decodeURIComponent(escape(description))
+ return decodeURIComponent(description)
} catch(err){
- return escape(description)
+ return description
}
}
},
@@ -306,9 +306,9 @@
description = data.description.slice(0, 200) + '...'
}
try {
- return decodeURIComponent(escape(description))
+ return decodeURIComponent(description)
} catch(err){
- return escape(description)
+ return description
}
}
},