Button: Whitespace

This commit is contained in:
Scott González 2014-04-21 09:15:23 -04:00
parent 23d7d50f37
commit 5f11f55f61

View File

@ -41,13 +41,13 @@ test("disabled, null", function() {
test( "disabled, ui-state-active is removed unless checkbox or radio", function() { test( "disabled, ui-state-active is removed unless checkbox or radio", function() {
expect( 12 ); expect( 12 );
var elements = [ var elements = [
$( "<input type='button'>" ), $( "<input type='button'>" ),
$( "<button></button>" ), $( "<button></button>" ),
$( "<a></a>" ), $( "<a></a>" ),
$( "<div></div>" ), $( "<div></div>" ),
$( "<input type='checkbox' id='checkbox' checked><label for='checkbox'></label>" ), $( "<input type='checkbox' id='checkbox' checked><label for='checkbox'></label>" ),
$( "<input type='radio' id='radio' checked><label for='radio'></label>" ) $( "<input type='radio' id='radio' checked><label for='radio'></label>" )
]; ];
$.each( elements, function() { $.each( elements, function() {
var element = $( this ).first().button(), var element = $( this ).first().button(),