Skip to content

Commit

Permalink
remove prototype.settings.item
Browse files Browse the repository at this point in the history
fixes break with Outlayer v1.1.10
  • Loading branch information
desandro committed Jan 23, 2014
1 parent 0205c26 commit d1018d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "packery",
"version": "1.2.0",
"version": "1.2.1",
"author": "David DeSandro / Metafizzy",
"description": "bin-packing layout library",
"main": [
Expand All @@ -10,10 +10,10 @@
"js/packery.js"
],
"dependencies": {
"outlayer": ">=1.1 <2"
"classie": "#>=1 <2",
"get-style-property": "desandro/get-style-property#>=1 <2",
"get-size": "desandro/get-size#>=1.1 <2",
"outlayer": ">=1.1.10 <2"
},
"devDependencies": {
"draggabilly": "desandro/draggabilly#>=1.0.0",
Expand Down
4 changes: 2 additions & 2 deletions js/packery.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Packery v1.2.0
* Packery v1.2.1
* bin-packing layout library
* http://packery.metafizzy.co
*
Expand All @@ -22,7 +22,7 @@ function packeryDefinition( classie, getSize, Outlayer, Rect, Packer, Item ) {

// create an Outlayer layout class
var Packery = Outlayer.create('packery');
Packery.Item = Packery.prototype.settings.item = Item;
Packery.Item = Item;

Packery.prototype._create = function() {
// call super
Expand Down

0 comments on commit d1018d6

Please sign in to comment.