Skip to content

Commit 3c860f9

Browse files
committed
All: Replace non-breaking spaces with regular spaces
1 parent abc2a75 commit 3c860f9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

demos/autocomplete/multiple-remote.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
return val.split( /,\s*/ );
1818
}
1919
function extractLast( term ) {
20-
return split( term ).pop();
20+
return split( term ).pop();
2121
}
2222

2323
$( "#birds" )

demos/dialog/modal-message.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
modal: true,
1313
buttons: {
1414
Ok: function() {
15-
$( this ).dialog( "close" );
15+
$( this ).dialog( "close" );
1616
}
1717
}
1818
});

tests/lib/qunit-assert-domequal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ function extract( selector, message ) {
9999
var children;
100100
$.each( domEqual.properties, function( index, attr ) {
101101
var value = elem.prop( attr );
102-
result[ attr ] = value != null ? value : "";
102+
result[ attr ] = value != null ? value : "";
103103
} );
104104
$.each( domEqual.attributes, function( index, attr ) {
105105
var value = elem.attr( attr );
106-
result[ attr ] = value != null ? value : "";
106+
result[ attr ] = value != null ? value : "";
107107
} );
108108
result.style = getElementStyles( elem[ 0 ] );
109109
result.events = $._data( elem[ 0 ], "events" );

tests/unit/menu/events.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ QUnit.test( "handle keyboard navigation on menu without scroll and with submenus
353353
}
354354

355355
function menukeyboard3() {
356-
log( "keydown", true );
356+
log( "keydown", true );
357357
element.simulate( "keydown", { keyCode: $.ui.keyCode.PAGE_DOWN } );
358358
assert.equal( logOutput(), "keydown,2", "Keydown PAGE_DOWN" );
359359

0 commit comments

Comments
 (0)