Deploying to gh-pages from @ 48b15b9bf8 🚀

This commit is contained in:
Sija 2021-10-19 09:45:33 +00:00
parent 42809c9681
commit f760465482
106 changed files with 5612 additions and 4623 deletions

View file

@ -33,7 +33,7 @@ CrystalDocs.runQuery = function(query) {
}
if (matches.length > 0) {
results.push({
id: type.id,
id: type.html_id,
result_type: "type",
kind: type.kind,
name: name,
@ -96,14 +96,14 @@ CrystalDocs.runQuery = function(query) {
matches = matches.concat(typeMatches);
}
results.push({
id: method.id,
id: method.html_id,
type: type.full_name,
result_type: kind,
name: method.name,
full_name: type.full_name + "#" + method.name,
args_string: method.args_string,
summary: method.summary,
href: type.path + "#" + method.id,
href: type.path + "#" + method.html_id,
matched_fields: matchedFields,
matched_terms: matches
});
@ -130,14 +130,14 @@ CrystalDocs.runQuery = function(query) {
matches = matches.concat(typeMatches);
}
results.push({
id: constant.id,
id: constant.html_id,
type: type.full_name,
result_type: "constant",
name: constant.name,
full_name: type.full_name + "#" + constant.name,
value: constant.value,
summary: constant.summary,
href: type.path + "#" + constant.id,
href: type.path + "#" + constant.html_id,
matched_fields: matchedFields,
matched_terms: matches
});