All: Replace non-breaking spaces with regular spaces

This commit is contained in:
Scott González 2016-06-08 13:03:42 -04:00
parent abc2a755f9
commit 3c860f95aa
4 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@
return val.split( /,\s*/ );
}
function extractLast( term ) {
return split( term ).pop();
return split( term ).pop();
}
$( "#birds" )

View File

@ -12,7 +12,7 @@
modal: true,
buttons: {
Ok: function() {
$( this ).dialog( "close" );
$( this ).dialog( "close" );
}
}
});

View File

@ -99,11 +99,11 @@ function extract( selector, message ) {
var children;
$.each( domEqual.properties, function( index, attr ) {
var value = elem.prop( attr );
result[ attr ] = value != null ? value : "";
result[ attr ] = value != null ? value : "";
} );
$.each( domEqual.attributes, function( index, attr ) {
var value = elem.attr( attr );
result[ attr ] = value != null ? value : "";
result[ attr ] = value != null ? value : "";
} );
result.style = getElementStyles( elem[ 0 ] );
result.events = $._data( elem[ 0 ], "events" );

View File

@ -353,7 +353,7 @@ QUnit.test( "handle keyboard navigation on menu without scroll and with submenus
}
function menukeyboard3() {
log( "keydown", true );
log( "keydown", true );
element.simulate( "keydown", { keyCode: $.ui.keyCode.PAGE_DOWN } );
assert.equal( logOutput(), "keydown,2", "Keydown PAGE_DOWN" );