1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

query ui: disable fuzzy query, add exact match for calendar query ui (designed only for exact match)

addresses part of #296
This commit is contained in:
Ilya Kreymer 2018-07-09 19:40:05 -07:00
parent 2f062cf5c7
commit b7d919d8d2

View File

@ -82,7 +82,12 @@ function RenderCalendar(prefix, url) {
function init() {
$.ajax(prefix + "cdx", {
data: {"url": url, "output": "json"},
data: {"url": url,
"output": "json",
"allowFuzzy": "0",
"matchType": "exact"
},
dataType: "text",
success: function(data) {
processAll(data.trim());