From 66ad3d62c668710b4a2c98f0f3b91a4d5a5bb55c Mon Sep 17 00:00:00 2001 From: Ross Johnson Date: Tue, 28 Aug 2012 00:55:56 -0500 Subject: [PATCH 1/2] Fix key events with Chrome + jQuery 1.8.0 --- js/bootstrap-typeahead.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/bootstrap-typeahead.js b/js/bootstrap-typeahead.js index 65b1ddab14..421cabb016 100644 --- a/js/bootstrap-typeahead.js +++ b/js/bootstrap-typeahead.js @@ -174,7 +174,7 @@ .on('keypress', $.proxy(this.keypress, this)) .on('keyup', $.proxy(this.keyup, this)) - if ($.browser.webkit || $.browser.msie) { + if ($.browser.chrome || $.browser.webkit || $.browser.msie) { this.$element.on('keydown', $.proxy(this.keydown, this)) } From a976a1583c462ddc50ed672c36c1a79a3c6acc4c Mon Sep 17 00:00:00 2001 From: Octavian Damiean Date: Wed, 29 Aug 2012 13:24:00 +0200 Subject: [PATCH 2/2] Added 'clean' directive to the make file. --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index e854e056b3..25fce7862a 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,13 @@ test: kill -9 `cat js/tests/pid.txt` rm js/tests/pid.txt +# +# CLEANS THE ROOT DIRECTORY OF PRIOR BUILDS +# + +clean: + rm -r bootstrap + # # BUILD SIMPLE BOOTSTRAP DIRECTORY # recess & uglifyjs are required