Skip to content

Commit 6047046

Browse files
committed
fix getSize v2.0.2 AMD; tick v2.0.1
1 parent a0d3133 commit 6047046

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ Install with [Bower](http://bower.io): `bower install draggabilly`
2424
Link directly to Draggabilly files on [npmcdn.com](https://npmcdn.com).
2525

2626
``` html
27-
<script src="https://npmcdn.com/draggabilly@2.0.0/dist/draggabilly.pkgd.min.js"></script>
27+
<script src="https://npmcdn.com/draggabilly@2.0.1/dist/draggabilly.pkgd.min.js"></script>
2828
<!-- or -->
29-
<script src="https://npmcdn.com/draggabilly@2.0.0/dist/draggabilly.pkgd.js"></script>
29+
<script src="https://npmcdn.com/draggabilly@2.0.1/dist/draggabilly.pkgd.js"></script>
3030
```
3131

3232
## Usage

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "draggabilly",
33
"main": "draggabilly.js",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"description": "make that shiz draggable",
66
"dependencies": {
7-
"get-size": "~2.0.1",
7+
"get-size": "~2.0.2",
88
"unidragger": "~2.0.0"
99
},
1010
"devDependencies": {

dist/draggabilly.pkgd.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Draggabilly PACKAGED v2.0.0
2+
* Draggabilly PACKAGED v2.0.1
33
* Make that shiz draggable
44
* http://draggabilly.desandro.com
55
* MIT license
@@ -151,7 +151,7 @@ return jQueryBridget;
151151
}));
152152

153153
/*!
154-
* getSize v2.0.1
154+
* getSize v2.0.2
155155
* measure size of elements
156156
* MIT license
157157
*/
@@ -164,7 +164,9 @@ return jQueryBridget;
164164

165165
if ( typeof define == 'function' && define.amd ) {
166166
// AMD
167-
define( factory() );
167+
define( 'get-size/get-size',[],function() {
168+
return factory();
169+
});
168170
} else if ( typeof module == 'object' && module.exports ) {
169171
// CommonJS
170172
module.exports = factory();
@@ -358,8 +360,6 @@ return getSize;
358360

359361
});
360362

361-
define("get-size/get-size", function(){});
362-
363363
/*!
364364
* EventEmitter v4.2.11 - git.io/ee
365365
* Unlicense - http://unlicense.org/
@@ -1426,7 +1426,7 @@ return Unidragger;
14261426
}));
14271427

14281428
/*!
1429-
* Draggabilly v2.0.0
1429+
* Draggabilly v2.0.1
14301430
* Make that shiz draggable
14311431
* http://draggabilly.desandro.com
14321432
* MIT license

dist/draggabilly.pkgd.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

draggabilly.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Draggabilly v2.0.0
2+
* Draggabilly v2.0.1
33
* Make that shiz draggable
44
* http://draggabilly.desandro.com
55
* MIT license

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "draggabilly",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "make that shiz draggable",
55
"main": "draggabilly.js",
66
"dependencies": {
7-
"get-size": "~2.0.1",
7+
"get-size": "~2.0.2",
88
"unidragger": "~2.0.0"
99
},
1010
"devDependencies": {

0 commit comments

Comments
 (0)