File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import { access } from "../core/access.js";
3
3
import { nodeName } from "../core/nodeName.js" ;
4
4
import { rnothtmlwhite } from "../var/rnothtmlwhite.js" ;
5
5
import { isIE } from "../var/isIE.js" ;
6
- import { rbooleans } from "./var/rbooleans.js" ;
7
6
8
7
jQuery . fn . extend ( {
9
8
attr : function ( name , value ) {
@@ -98,7 +97,10 @@ if ( isIE ) {
98
97
} ;
99
98
}
100
99
101
- jQuery . each ( rbooleans . source . match ( / \w + / g ) , function ( _i , name ) {
100
+ jQuery . each ( (
101
+ "checked selected async autofocus autoplay controls defer disabled" +
102
+ " hidden ismap loop multiple open readonly required scoped"
103
+ ) . split ( " " ) , function ( _i , name ) {
102
104
jQuery . attrHooks [ name ] = {
103
105
get : function ( elem ) {
104
106
var ret ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments