aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2013-03-26 14:43:35 -0400
committerScott González <scott.gonzalez@gmail.com>2013-03-26 14:43:35 -0400
commita4fabd2bb4016dace930bdbb87fd82b09950b4c8 (patch)
treebd9757515c342754ffd1eaa47c8d766d311ea007 /tests
parent8ad8cea69590cbaddc143732e001c8d769b9f204 (diff)
downloadjquery-ui-a4fabd2bb4016dace930bdbb87fd82b09950b4c8.tar.gz
jquery-ui-a4fabd2bb4016dace930bdbb87fd82b09950b4c8.zip
Whitespace.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/button/button_methods.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/button/button_methods.js b/tests/unit/button/button_methods.js
index c53444005..467938f00 100644
--- a/tests/unit/button/button_methods.js
+++ b/tests/unit/button/button_methods.js
@@ -15,7 +15,7 @@ test("destroy", function() {
test( "refresh: Ensure disabled state is preserved correctly.", function() {
expect( 8 );
-
+
var element = $( "<a href='#'></a>" );
element.button({ disabled: true }).button( "refresh" );
ok( element.button( "option", "disabled" ), "Anchor button should remain disabled after refresh" ); //See #8237