File tree 6 files changed +34
-15
lines changed
6 files changed +34
-15
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ Release.define( {
140
140
} ;
141
141
142
142
module . exports . dependencies = [
143
- "download.jqueryui.com@2.2.1 " ,
143
+ "download.jqueryui.com@2.2.4 " ,
144
144
"node-packager@0.0.6" ,
145
145
"shelljs@0.8.4"
146
146
] ;
Original file line number Diff line number Diff line change 51
51
"devDependencies" : {
52
52
"commitplease" : " 3.2.0" ,
53
53
"eslint-config-jquery" : " 3.0.0" ,
54
- "glob" : " 7.1.6 " ,
55
- "grunt" : " 1.3.0 " ,
54
+ "glob" : " 7.1.7 " ,
55
+ "grunt" : " 1.4.1 " ,
56
56
"grunt-bowercopy" : " 1.2.5" ,
57
- "grunt-cli" : " 1.3.2 " ,
57
+ "grunt-cli" : " 1.4.3 " ,
58
58
"grunt-compare-size" : " 0.4.2" ,
59
59
"grunt-contrib-concat" : " 1.0.1" ,
60
60
"grunt-contrib-csslint" : " 2.0.0" ,
61
- "grunt-contrib-qunit" : " 4 .0.0 " ,
61
+ "grunt-contrib-qunit" : " 5 .0.1 " ,
62
62
"grunt-contrib-requirejs" : " 1.0.0" ,
63
- "grunt-contrib-uglify" : " 5.0.0 " ,
63
+ "grunt-contrib-uglify" : " 5.0.1 " ,
64
64
"grunt-eslint" : " 23.0.0" ,
65
65
"grunt-git-authors" : " 3.2.0" ,
66
- "grunt-html" : " 14.2 .0" ,
66
+ "grunt-html" : " 14.5 .0" ,
67
67
"load-grunt-tasks" : " 5.1.0" ,
68
68
"rimraf" : " 3.0.2" ,
69
69
"testswarm" : " 1.1.2"
Original file line number Diff line number Diff line change 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
2
2
( function ( ) {
3
3
"use strict" ;
4
4
Original file line number Diff line number Diff line change 23
23
// AMD. Register as an anonymous module.
24
24
define ( [
25
25
"jquery" ,
26
+ "./jquery-var-for-color" ,
26
27
"./vendor/jquery-color/jquery.color" ,
27
28
"./version"
28
29
] , factory ) ;
36
37
37
38
var dataSpace = "ui-effects-" ,
38
39
dataSpaceStyle = "ui-effects-style" ,
39
- dataSpaceAnimated = "ui-effects-animated" ,
40
-
41
- // Create a local jQuery because jQuery Color relies on it and the
42
- // global may not exist with AMD and a custom build (#10199)
43
- jQuery = $ ;
40
+ dataSpaceAnimated = "ui-effects-animated" ;
44
41
45
42
$ . effects = {
46
43
effect : { }
@@ -704,7 +701,7 @@ $.fn.extend( {
704
701
// as the .show() below destroys the initial state
705
702
modes . push ( normalizedMode ) ;
706
703
707
- // See $.uiBackCompat inside of run() for removal of defaultMode in 1.13
704
+ // See $.uiBackCompat inside of run() for removal of defaultMode in 1.14
708
705
if ( defaultMode && ( normalizedMode === "show" ||
709
706
( normalizedMode === defaultMode && normalizedMode === "hide" ) ) ) {
710
707
el . show ( ) ;
Original file line number Diff line number Diff line change
1
+ ( function ( factory ) {
2
+ "use strict" ;
3
+
4
+ if ( typeof define === "function" && define . amd ) {
5
+
6
+ // AMD. Register as an anonymous module.
7
+ define ( [ "jquery" , "./version" ] , factory ) ;
8
+ } else {
9
+
10
+ // Browser globals
11
+ factory ( jQuery ) ;
12
+ }
13
+ } ) ( function ( $ ) {
14
+ "use strict" ;
15
+
16
+ // Create a local jQuery because jQuery Color relies on it and the
17
+ // global may not exist with AMD and a custom build (#10199).
18
+ // This module is a noop if used as a regular AMD module.
19
+ // eslint-disable-next-line no-unused-vars
20
+ var jQuery = $ ;
21
+
22
+ } ) ;
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ $.widget( "ui.droppable", {
241
241
} ,
242
242
243
243
// Extension points just to make backcompat sane and avoid duplicating logic
244
- // TODO: Remove in 1.13 along with call to it below
244
+ // TODO: Remove in 1.14 along with call to it below
245
245
_addHoverClass : function ( ) {
246
246
this . _addClass ( "ui-droppable-hover" ) ;
247
247
} ,
You can’t perform that action at this time.
0 commit comments