Skip to content

Commit 90e39ce

Browse files
authored
Merge pull request #1 from dougblackjr/dougblackjr-patch-1
Fixed over_sb error
2 parents b9a703e + 4564835 commit 90e39ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jquery.auto-complete.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
});
8282

8383
that.on('blur.autocomplete', function(){
84-
try { over_sb = $('.autocomplete-suggestions:hover').length; } catch(e){ over_sb = 0; } // IE7 fix :hover
84+
try { var over_sb = $('.autocomplete-suggestions:hover').length; } catch(e){ over_sb = 0; } // IE7 fix :hover
8585
if (!over_sb) {
8686
that.last_val = that.val();
8787
that.sc.hide();

0 commit comments

Comments
 (0)