function typeaheadRun()

in static/js/gatekeeper.js [15:28]


function typeaheadRun(typeaheadId, sourceName, source) {
    $(typeaheadId + ' .typeahead').typeahead(
        {
            hint: true,
            highlight: true,
            minLength: 0
        },
        {
            limit: 20,
            name: sourceName,
            source: typeaheadInit(source)
        }
    );
}