Skip to content

Commit 5118c75

Browse files
committed
Merge remote-tracking branch 'origin/AC-9227' into Hammer_Platform_Health_Scope_28082023
2 parents 6df4c04 + 54dea22 commit 5118c75

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+17943
-17942
lines changed

lib/web/jquery/ui-modules/data.js

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery UI :data 1.13.1
2+
* jQuery UI :data 1.13.2
33
* http://jqueryui.com
44
*
55
* Copyright jQuery Foundation and other contributors
@@ -13,31 +13,31 @@
1313
//>>docs: http://api.jqueryui.com/data-selector/
1414

1515
( function( factory ) {
16-
"use strict";
16+
"use strict";
1717

18-
if ( typeof define === "function" && define.amd ) {
18+
if ( typeof define === "function" && define.amd ) {
1919

20-
// AMD. Register as an anonymous module.
21-
define( [ "jquery", "./version" ], factory );
22-
} else {
20+
// AMD. Register as an anonymous module.
21+
define( [ "jquery", "./version" ], factory );
22+
} else {
2323

24-
// Browser globals
25-
factory( jQuery );
26-
}
24+
// Browser globals
25+
factory( jQuery );
26+
}
2727
} )( function( $ ) {
28-
"use strict";
28+
"use strict";
2929

30-
return $.extend( $.expr.pseudos, {
31-
data: $.expr.createPseudo ?
32-
$.expr.createPseudo( function( dataName ) {
33-
return function( elem ) {
34-
return !!$.data( elem, dataName );
35-
};
36-
} ) :
30+
return $.extend( $.expr.pseudos, {
31+
data: $.expr.createPseudo ?
32+
$.expr.createPseudo( function( dataName ) {
33+
return function( elem ) {
34+
return !!$.data( elem, dataName );
35+
};
36+
} ) :
3737

38-
// Support: jQuery <1.8
39-
function( elem, i, match ) {
40-
return !!$.data( elem, match[ 3 ] );
41-
}
42-
} );
38+
// Support: jQuery <1.8
39+
function( elem, i, match ) {
40+
return !!$.data( elem, match[ 3 ] );
41+
}
42+
} );
4343
} );
Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery UI Disable Selection 1.13.1
2+
* jQuery UI Disable Selection 1.13.2
33
* http://jqueryui.com
44
*
55
* Copyright jQuery Foundation and other contributors
@@ -14,36 +14,36 @@
1414

1515
// This file is deprecated
1616
( function( factory ) {
17-
"use strict";
17+
"use strict";
1818

19-
if ( typeof define === "function" && define.amd ) {
19+
if ( typeof define === "function" && define.amd ) {
2020

21-
// AMD. Register as an anonymous module.
22-
define( [ "jquery", "./version" ], factory );
23-
} else {
21+
// AMD. Register as an anonymous module.
22+
define( [ "jquery", "./version" ], factory );
23+
} else {
2424

25-
// Browser globals
26-
factory( jQuery );
27-
}
25+
// Browser globals
26+
factory( jQuery );
27+
}
2828
} )( function( $ ) {
29-
"use strict";
30-
31-
return $.fn.extend( {
32-
disableSelection: ( function() {
33-
var eventType = "onselectstart" in document.createElement( "div" ) ?
34-
"selectstart" :
35-
"mousedown";
36-
37-
return function() {
38-
return this.on( eventType + ".ui-disableSelection", function( event ) {
39-
event.preventDefault();
40-
} );
41-
};
42-
} )(),
43-
44-
enableSelection: function() {
45-
return this.off( ".ui-disableSelection" );
46-
}
47-
} );
29+
"use strict";
30+
31+
return $.fn.extend( {
32+
disableSelection: ( function() {
33+
var eventType = "onselectstart" in document.createElement( "div" ) ?
34+
"selectstart" :
35+
"mousedown";
36+
37+
return function() {
38+
return this.on( eventType + ".ui-disableSelection", function( event ) {
39+
event.preventDefault();
40+
} );
41+
};
42+
} )(),
43+
44+
enableSelection: function() {
45+
return this.off( ".ui-disableSelection" );
46+
}
47+
} );
4848

4949
} );

0 commit comments

Comments
 (0)