summaryrefslogtreecommitdiffstats
path: root/sitestatic/bootstrap-typeahead.js
diff options
context:
space:
mode:
Diffstat (limited to 'sitestatic/bootstrap-typeahead.js')
-rw-r--r--sitestatic/bootstrap-typeahead.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/sitestatic/bootstrap-typeahead.js b/sitestatic/bootstrap-typeahead.js
index c2ccdea..3d355ae 100644
--- a/sitestatic/bootstrap-typeahead.js
+++ b/sitestatic/bootstrap-typeahead.js
@@ -45,9 +45,11 @@
, select: function () {
var val = this.$menu.find('.active').attr('data-value')
- this.$element
- .val(this.updater(val))
- .change()
+ if (val) {
+ this.$element
+ .val(this.updater(val))
+ .change()
+ }
return this.hide()
}
@@ -141,7 +143,6 @@
return i[0]
})
- items.first().addClass('active')
this.$menu.html(items)
return this
}