summaryrefslogtreecommitdiffstats
path: root/common/html-coverpage/static/js/bloodhound.js
diff options
context:
space:
mode:
Diffstat (limited to 'common/html-coverpage/static/js/bloodhound.js')
-rw-r--r--common/html-coverpage/static/js/bloodhound.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/common/html-coverpage/static/js/bloodhound.js b/common/html-coverpage/static/js/bloodhound.js
deleted file mode 100644
index ec2cbf6..0000000
--- a/common/html-coverpage/static/js/bloodhound.js
+++ /dev/null
@@ -1,30 +0,0 @@
-
-var states = new Bloodhound({
- remote: '/search/autocomplete/?q=%QUERY',
- datumTokenizer: function(d) {
- return Bloodhound.tokenizers.whitespace(d.value);
- },
- queryTokenizer: Bloodhound.tokenizers.whitespace,
- limit: 15
-});
-
-// kicks off the loading/processing of `local` and `prefetch`
-states.initialize();
-
-$('#bloodhound .typeahead').typeahead({
- hint: true,
- highlight: true,
- minLength: 1
-},
-{
- name: 'states',
- displayKey: 'value',
- // `ttAdapter` wraps the suggestion engine in an adapter that
- // is compatible with the typeahead jQuery plugin
- source: states.ttAdapter()
-});
-
-
-$('#search_input').bind('typeahead:selected', function(obj, datum, name) {
- $("form").submit();
-});