Skip to content

Commit

Permalink
fix getSize v2.0.2 AMD; tick v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
desandro committed Jan 4, 2016
1 parent a0d3133 commit 6047046
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Install with [Bower](http://bower.io): `bower install draggabilly`
Link directly to Draggabilly files on [npmcdn.com](https://npmcdn.com).

``` html
<script src="https://npmcdn.com/draggabilly@2.0.0/dist/draggabilly.pkgd.min.js"></script>
<script src="https://npmcdn.com/draggabilly@2.0.1/dist/draggabilly.pkgd.min.js"></script>
<!-- or -->
<script src="https://npmcdn.com/draggabilly@2.0.0/dist/draggabilly.pkgd.js"></script>
<script src="https://npmcdn.com/draggabilly@2.0.1/dist/draggabilly.pkgd.js"></script>
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "draggabilly",
"main": "draggabilly.js",
"version": "2.0.0",
"version": "2.0.1",
"description": "make that shiz draggable",
"dependencies": {
"get-size": "~2.0.1",
"get-size": "~2.0.2",
"unidragger": "~2.0.0"
},
"devDependencies": {
Expand Down
12 changes: 6 additions & 6 deletions dist/draggabilly.pkgd.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Draggabilly PACKAGED v2.0.0
* Draggabilly PACKAGED v2.0.1
* Make that shiz draggable
* http://draggabilly.desandro.com
* MIT license
Expand Down Expand Up @@ -151,7 +151,7 @@ return jQueryBridget;
}));

/*!
* getSize v2.0.1
* getSize v2.0.2
* measure size of elements
* MIT license
*/
Expand All @@ -164,7 +164,9 @@ return jQueryBridget;

if ( typeof define == 'function' && define.amd ) {
// AMD
define( factory() );
define( 'get-size/get-size',[],function() {
return factory();
});
} else if ( typeof module == 'object' && module.exports ) {
// CommonJS
module.exports = factory();
Expand Down Expand Up @@ -358,8 +360,6 @@ return getSize;

});

define("get-size/get-size", function(){});

/*!
* EventEmitter v4.2.11 - git.io/ee
* Unlicense - http://unlicense.org/
Expand Down Expand Up @@ -1426,7 +1426,7 @@ return Unidragger;
}));

/*!
* Draggabilly v2.0.0
* Draggabilly v2.0.1
* Make that shiz draggable
* http://draggabilly.desandro.com
* MIT license
Expand Down
4 changes: 2 additions & 2 deletions dist/draggabilly.pkgd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion draggabilly.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Draggabilly v2.0.0
* Draggabilly v2.0.1
* Make that shiz draggable
* http://draggabilly.desandro.com
* MIT license
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "draggabilly",
"version": "2.0.0",
"version": "2.0.1",
"description": "make that shiz draggable",
"main": "draggabilly.js",
"dependencies": {
"get-size": "~2.0.1",
"get-size": "~2.0.2",
"unidragger": "~2.0.0"
},
"devDependencies": {
Expand Down

0 comments on commit 6047046

Please sign in to comment.