Code Monkey home page Code Monkey logo

Comments (1)

twobob avatar twobob commented on September 18, 2024

since you say based EXACTLY on the example
The default content of keyup would do this assuming that $(#configuration).val() is blank
If you hack it in app.js to read

$('input').bind('keyup', debounce(function () {
if ($(this).val().length < 2) return
// var config = $('#configuration').val(); THIS WILL BE EMPTY SO...
var config = '{ "fields": { "title": {"boost": 2}, "tags": {"boost": 2}, "body": {"boost": 1} }, "boolean": "OR"}';
var json_config = null;
json_config = new elasticlunr.Configuration(config, window.idx.getFields()).get();
var query = $(this).val()
var results = null;
results = window.idx.search(query, json_config).map(function (result) {
return questions.filter(function (q) { return q.id === parseInt(result.ref, 10) })[0]
})
// console.log(results); // FOR OPTIONAL MATCH OUTPUTS (can be handy to debug)
renderQuestionList(results)
}))

And amend the config var to be something you want., that might do it?
Hope that helps.

from elasticlunr.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.