Datepicker: Make sure altField is treated as a CSS selector

Closes gh-1954
This commit is contained in:
Michał Gołębiowski-Owczarek 2021-05-04 13:30:06 +02:00 committed by GitHub
parent 9380d2734e
commit 32850869d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 3 deletions

View File

@ -623,8 +623,10 @@ QUnit.test( "setDate", function( assert ) {
} );
QUnit.test( "altField", function( assert ) {
assert.expect( 10 );
var inp = testHelper.init( "#inp" ),
assert.expect( 11 );
var done = assert.async(),
inp = testHelper.init( "#inp" ),
alt = $( "#alt" );
// No alternate field set
@ -664,6 +666,22 @@ QUnit.test( "altField", function( assert ) {
inp.simulate( "keydown", { ctrlKey: true, keyCode: $.ui.keyCode.END } );
assert.equal( inp.val(), "", "Alt field - dp - ctrl+end" );
assert.equal( alt.val(), "", "Alt field - alt - ctrl+end" );
// HTML instead of selector
alt.val( "" );
try {
inp.datepicker( "option", {
altField: "<img onerror='window.globalAltField=true' src='/404' />",
altFormat: "yy-mm-dd"
} ).val( "06/04/2008" ).datepicker( "show" );
inp.simulate( "keydown", { keyCode: $.ui.keyCode.ENTER } );
} catch ( e ) {}
setTimeout( function() {
assert.equal( window.globalAltField, undefined, "altField treated as a selector" );
delete window.globalAltField;
done();
}, 500 );
} );
QUnit.test( "autoSize", function( assert ) {

View File

@ -1089,7 +1089,7 @@ $.extend( Datepicker.prototype, {
altFormat = this._get( inst, "altFormat" ) || this._get( inst, "dateFormat" );
date = this._getDate( inst );
dateStr = this.formatDate( altFormat, date, this._getFormatConfig( inst ) );
$( altField ).val( dateStr );
$( document ).find( altField ).val( dateStr );
}
},