2.1.4 • Published 7 years ago

packery-rows v2.1.4

Weekly downloads
5
License
-
Repository
-
Last release
7 years ago

This release is official packery package v2.1.1 with a small fix which force the "row drag behavior".

The issue can be found here: https://github.com/metafizzy/packery/issues/353

The fix could be found here (Nicolas HILAIRE) https://github.com/metafizzy/packery/issues/348

For use, configuration,.... see official packery https://github.com/metafizzy/packery

Using with webpack

Install it

npm install packery-rows --save

Configure webpack

module.exports = {
	resolve : {
		alias : {
			packery : "packery-rows/packery.pkgd.min.js"
		}
	}
}

Use it

var Packery = require("packery");

var pkry = new Packery( '.grid', {
	//options...
});