diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-09-11 10:48:20 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-10-08 14:02:56 -0400 |
commit | 641c5ed17a302bcc7cdf395461efdfa12640fcbf (patch) | |
tree | 4cc75f5b543f8daede2b0cd04ac83afbf33a46d7 /tests/unit/checkboxradio/events.js | |
parent | 6169099229497aa83ba1eea0875846d52cd89eb8 (diff) | |
download | jquery-ui-641c5ed17a302bcc7cdf395461efdfa12640fcbf.tar.gz jquery-ui-641c5ed17a302bcc7cdf395461efdfa12640fcbf.zip |
Checkboxradio: Style updates
Diffstat (limited to 'tests/unit/checkboxradio/events.js')
-rw-r--r-- | tests/unit/checkboxradio/events.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/checkboxradio/events.js b/tests/unit/checkboxradio/events.js index ad7f1e75f..498491bd1 100644 --- a/tests/unit/checkboxradio/events.js +++ b/tests/unit/checkboxradio/events.js @@ -20,7 +20,7 @@ asyncTest( form.get( 0 ).reset(); - setTimeout(function() { + setTimeout( function() { assert.hasClasses( widget, "ui-state-active" ); start(); }, 1 ); @@ -33,7 +33,7 @@ asyncTest( "Checkbox shows focus when using keyboard navigation", function( asse label = $( "label[for='check']" ); assert.lacksClasses( label, "ui-state-focus" ); check.focus(); - setTimeout(function() { + setTimeout( function() { assert.hasClasses( label, "ui-state-focus" ); start(); } ); |