Skip to content

Commit 1640069

Browse files
AC-1544: Upgrade jquery-ui to the latest version 1.13.0
1 parent c4003e8 commit 1640069

File tree

136 files changed

+20820
-19537
lines changed

Some content is hidden

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

136 files changed

+20820
-19537
lines changed

lib/web/jquery/jquery-ui.js

Lines changed: 17970 additions & 17630 deletions
Large diffs are not rendered by default.

lib/web/jquery/ui-modules/.jshintrc

Lines changed: 0 additions & 23 deletions
This file was deleted.

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// This file is deprecated in 1.12.0 to be removed in 1.13
1+
// This file is deprecated in 1.12.0 to be removed in 1.14
22
( function() {
3+
"use strict";
4+
35
define( [
46
"jquery",
57
"./data",
@@ -9,6 +11,7 @@ define( [
911
"./ie",
1012
"./keycode",
1113
"./labels",
14+
"./jquery-patch",
1215
"./plugin",
1316
"./safe-active-element",
1417
"./safe-blur",

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

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

1515
( function( factory ) {
16+
"use strict";
17+
1618
if ( typeof define === "function" && define.amd ) {
1719

1820
// AMD. Register as an anonymous module.
@@ -22,8 +24,10 @@
2224
// Browser globals
2325
factory( jQuery );
2426
}
25-
} ( function( $ ) {
26-
return $.extend( $.expr[ ":" ], {
27+
} )( function( $ ) {
28+
"use strict";
29+
30+
return $.extend( $.expr.pseudos, {
2731
data: $.expr.createPseudo ?
2832
$.expr.createPseudo( function( dataName ) {
2933
return function( elem ) {
@@ -36,4 +40,4 @@ return $.extend( $.expr[ ":" ], {
3640
return !!$.data( elem, match[ 3 ] );
3741
}
3842
} );
39-
} ) );
43+
} );

lib/web/jquery/ui-modules/disable-selection.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery UI Disable Selection 1.12.1
2+
* jQuery UI Disable Selection 1.13.0
33
* http://jqueryui.com
44
*
55
* Copyright jQuery Foundation and other contributors
@@ -14,6 +14,8 @@
1414

1515
// This file is deprecated
1616
( function( factory ) {
17+
"use strict";
18+
1719
if ( typeof define === "function" && define.amd ) {
1820

1921
// AMD. Register as an anonymous module.
@@ -23,7 +25,8 @@
2325
// Browser globals
2426
factory( jQuery );
2527
}
26-
} ( function( $ ) {
28+
} )( function( $ ) {
29+
"use strict";
2730

2831
return $.fn.extend( {
2932
disableSelection: ( function() {
@@ -43,4 +46,4 @@ return $.fn.extend( {
4346
}
4447
} );
4548

46-
} ) );
49+
} );

0 commit comments

Comments
 (0)