aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/button/button_tickets.js
diff options
context:
space:
mode:
authorTJ VanToll <tj.vantoll@gmail.com>2012-11-19 15:42:28 -0500
committerMike Sherov <mike.sherov@gmail.com>2012-11-21 19:24:24 -0500
commit93abe02b6052143fac30393291da3fc254bde996 (patch)
treea74a4d77933f392f6116a21d47594291ad3fbc50 /tests/unit/button/button_tickets.js
parentcb748b4a6f32aa5748d6777e7871c96f70ad2207 (diff)
downloadjquery-ui-93abe02b6052143fac30393291da3fc254bde996.tar.gz
jquery-ui-93abe02b6052143fac30393291da3fc254bde996.zip
Button: Fixing handling of the disabled options on refresh method calls. Fixed #8828 - Button: Refresh does not re-enable disabled button.
Diffstat (limited to 'tests/unit/button/button_tickets.js')
-rw-r--r--tests/unit/button/button_tickets.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/unit/button/button_tickets.js b/tests/unit/button/button_tickets.js
index 1e901f9d1..1272d368f 100644
--- a/tests/unit/button/button_tickets.js
+++ b/tests/unit/button/button_tickets.js
@@ -72,12 +72,4 @@ test( "#7534 - Button label selector works for ids with \":\"", function() {
ok( group.find( "label" ).is( ".ui-button" ), "Found an id with a :" );
});
-test( "#8237 - Anchor tags lose disabled state when refreshed", function() {
- expect( 1 );
- var element = $( "<a id='a8237'></a>" ).appendTo( "#qunit-fixture" );
-
- element.button({ disabled: true }).button( "refresh" );
- ok( element.button( "option", "disabled" ), "Anchor button should remain disabled after refresh" );
-});
-
})( jQuery );