diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2016-12-06 10:24:53 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2016-12-06 10:24:53 -0500 |
| commit | e82f80b46ada10cd83f2e0faf28a2281a27ec533 (patch) | |
| tree | 51fb7e02db426319e25ca44c542d6b5ea8177263 /www/external/origjs/packery.pkgd.js | |
| parent | abb3f1f3517d654050cfeb2161347163bc63455b (diff) | |
multiple montage profile support added #390
Diffstat (limited to 'www/external/origjs/packery.pkgd.js')
| -rw-r--r-- | www/external/origjs/packery.pkgd.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/external/origjs/packery.pkgd.js b/www/external/origjs/packery.pkgd.js index 7576576b..fa4e8308 100644 --- a/www/external/origjs/packery.pkgd.js +++ b/www/external/origjs/packery.pkgd.js @@ -3088,10 +3088,10 @@ proto._bindFitEvents = function( item ) { // -------------------------- resize -------------------------- // // debounced, layout on resize -proto.resize = function() { +proto.resize = function(force) { // don't trigger if size did not change // or if resize was unbound. See #285, outlayer#9 - if ( !this.isResizeBound || !this.needsResizeLayout() ) { + if ( !force && (!this.isResizeBound || !this.needsResizeLayout()) ) { return; } |
