equal
deleted
inserted
replaced
1 /*! |
1 /*! |
2 * jQuery UI Effects Puff 1.13.1 |
2 * jQuery UI Effects Puff 1.13.3 |
3 * http://jqueryui.com |
3 * https://jqueryui.com |
4 * |
4 * |
5 * Copyright jQuery Foundation and other contributors |
5 * Copyright OpenJS Foundation and other contributors |
6 * Released under the MIT license. |
6 * Released under the MIT license. |
7 * http://jquery.org/license |
7 * https://jquery.org/license |
8 */ |
8 */ |
9 |
9 |
10 //>>label: Puff Effect |
10 //>>label: Puff Effect |
11 //>>group: Effects |
11 //>>group: Effects |
12 //>>description: Creates a puff effect by scaling the element up and hiding it at the same time. |
12 //>>description: Creates a puff effect by scaling the element up and hiding it at the same time. |
13 //>>docs: http://api.jqueryui.com/puff-effect/ |
13 //>>docs: https://api.jqueryui.com/puff-effect/ |
14 //>>demos: http://jqueryui.com/effect/ |
14 //>>demos: https://jqueryui.com/effect/ |
15 |
15 |
16 ( function( factory ) { |
16 ( function( factory ) { |
17 "use strict"; |
17 "use strict"; |
18 |
18 |
19 if ( typeof define === "function" && define.amd ) { |
19 if ( typeof define === "function" && define.amd ) { |
20 |
20 |
21 // AMD. Register as an anonymous module. |
21 // AMD. Register as an anonymous module. |
22 define( [ |
22 define( [ |
23 "jquery", |
23 "jquery", |
24 "./effect", |
24 "../version", |
|
25 "../effect", |
25 "./effect-scale" |
26 "./effect-scale" |
26 ], factory ); |
27 ], factory ); |
27 } else { |
28 } else { |
28 |
29 |
29 // Browser globals |
30 // Browser globals |