Skip to content

Commit ac067d7

Browse files
committed
fix support reference
1 parent 9048c5a commit ac067d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

jquery.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Copyright 2011, The Dojo Foundation
1212
* Released under the MIT, BSD, and GPL Licenses.
1313
*
14-
* Date: Mon Dec 11 16:28:39 2023 -0600
14+
* Date: Mon Dec 11 16:39:20 2023 -0600
1515
*/
1616
(function( window, undefined ) {
1717

@@ -5559,7 +5559,7 @@ wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.the
55595559
wrapMap.th = wrapMap.td;
55605560

55615561
// Support: IE <=9 only
5562-
if ( !support.option ) {
5562+
if ( !jQuery.support.option ) {
55635563
wrapMap.optgroup = wrapMap.option = [ 1, "<select multiple='multiple'>", "</select>" ];
55645564
}
55655565

src/manipulation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.the
2424
wrapMap.th = wrapMap.td;
2525

2626
// Support: IE <=9 only
27-
if ( !support.option ) {
27+
if ( !jQuery.support.option ) {
2828
wrapMap.optgroup = wrapMap.option = [ 1, "<select multiple='multiple'>", "</select>" ];
2929
}
3030

0 commit comments

Comments
 (0)