diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-10-16 14:14:45 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-10-16 14:14:45 -0400 |
commit | 1007ee811cea93485bc2a60435ec1bf2a728f129 (patch) | |
tree | 31f8026bd92cf85d6c63e0edf6ec9f9a01581be8 | |
parent | 548fbf570caa5fdee973bbbe8ac2d36b0338c2b9 (diff) | |
download | jquery-ui-1007ee811cea93485bc2a60435ec1bf2a728f129.tar.gz jquery-ui-1007ee811cea93485bc2a60435ec1bf2a728f129.zip |
Autocomplete: Whitespace
-rw-r--r-- | tests/unit/autocomplete/core.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/autocomplete/core.js b/tests/unit/autocomplete/core.js index 9cfac3917..e252970ee 100644 --- a/tests/unit/autocomplete/core.js +++ b/tests/unit/autocomplete/core.js @@ -412,10 +412,10 @@ asyncTest( "Close on click outside when focus remains", function() { } ); element.val( "j" ).autocomplete( "search", "j" ); - setTimeout(function() { + setTimeout( function() { ok( menu.is( ":visible" ), "menu displays initially" ); $( "body" ).simulate( "mousedown" ); - setTimeout(function() { + setTimeout( function() { ok( menu.is( ":hidden" ), "menu closes after clicking elsewhere" ); start(); } ); |