packed version of [passy/angular-masonry](https://github.com/passy/angular-masonry) including the most dependencies

## Usage
1. Install via either [bower](http://bower.io/), [npm](https://www.npmjs.com/) or downloaded files:
    1. `bower install --save angular-masonry-packed`
    2. `npm install --angular-masonry-packed`
    3. download [angular-masonry-packed.zip](https://github.com/JohnnyTheTank/angular-masonry-packed/zipball/master)
2. Add `wu.masonry` to your application's module dependencies.
3. Include dependencies in your HTML.
    1. When using bower:
    ```html
    <script src="bower_components/jquery/dist/jquery.js"></script>
    <script src="bower_components/angular/angular.js"></script>
    <script src="bower_components/angular-masonry-packed/dist/angular-masonry-packed.min.js"></script>
    ```
    2. When using npm:
    ```html
    <script src="node_modules/jquery/dist/jquery.js"></script>
    <script src="node_modules/angular/angular.js"></script>
    <script src="node_modules/angular-masonry-packed/dist/angular-masonry-packed.min.js"></script>
    ```
    3. when using downloaded files
    ```html
    <script src="jquery.js"></script>
    <script src="angular.js"></script>
    <script src="angular-masonry-packed.min.js"></script>
    ```
        
4. read docs on this the original repo: [passy/angular-masonry](https://github.com/passy/angular-masonry)