equal
deleted
inserted
replaced
1 /*! |
1 /*! |
2 * jQuery UI Effects Bounce 1.13.1 |
2 * jQuery UI Effects Bounce 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: Bounce Effect |
10 //>>label: Bounce Effect |
11 //>>group: Effects |
11 //>>group: Effects |
12 //>>description: Bounces an element horizontally or vertically n times. |
12 //>>description: Bounces an element horizontally or vertically n times. |
13 //>>docs: http://api.jqueryui.com/bounce-effect/ |
13 //>>docs: https://api.jqueryui.com/bounce-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 ], factory ); |
26 ], factory ); |
26 } else { |
27 } else { |
27 |
28 |
28 // Browser globals |
29 // Browser globals |
29 factory( jQuery ); |
30 factory( jQuery ); |