Commit 10f8c8ea authored by Steven Mathew's avatar Steven Mathew
Browse files

fix(flexsearch): separate chain of calls into statements

parent 7c834a5a
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
@@ -97,8 +97,8 @@ Source:
  {{ $list := (where .Site.Pages "Section" "docs") -}}
  {{ $len := (len $list) -}}

  index.add(
  {{ range $index, $element := $list -}}
    index.add(
      {
        id: {{ $index }},
        href: "{{ .RelPermalink }}",
@@ -109,12 +109,9 @@ Source:
          description: {{ .Summary | plainify | jsonify }},
        {{ end -}}
        content: {{ .Plain | jsonify }}
      })
      {{ if ne (add $index 1) $len -}}
        .add(
      {{ end -}}
      }
    );
  {{ end -}}
  ;

  search.addEventListener('input', show_results, true);