mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-05-19 09:40:45 +00:00
12 lines
257 B
CoffeeScript
12 lines
257 B
CoffeeScript
|
|
handle = (serp, status, resp)->
|
|
template = $('#template').html()
|
|
Mustache.parse(template)
|
|
rendered = Mustache.render(template, serp)
|
|
$("#serp").html(rendered)
|
|
|
|
window.search = ->
|
|
q = $('#q').val()
|
|
$.getJSON('/api', {q:q}, handle)
|
|
true
|