Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfat <jacobthornton@gmail.com>2013-02-08 09:42:34 +0400
committerfat <jacobthornton@gmail.com>2013-02-08 09:42:34 +0400
commit501aabf5723584eb0d1fba9569226f1b726a51b3 (patch)
treed55db6a73db4f9ea6aec60930a597a101142c67b /docs/assets/js/bootstrap.js
parent366e1e0a6d1442b8cf8546a27bac44a841b892a2 (diff)
remove prevent default on focus
Diffstat (limited to 'docs/assets/js/bootstrap.js')
-rw-r--r--docs/assets/js/bootstrap.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/assets/js/bootstrap.js b/docs/assets/js/bootstrap.js
index 54c03bcecd..a81171b42f 100644
--- a/docs/assets/js/bootstrap.js
+++ b/docs/assets/js/bootstrap.js
@@ -2145,7 +2145,6 @@
$(document).on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {
var $this = $(this)
if ($this.data('typeahead')) return
- e.preventDefault()
$this.typeahead($this.data())
})