Skip to content

Commit

Permalink
v3.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickkunka committed Mar 18, 2017
1 parent 39d92ae commit ee072f5
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,10 @@
Change Log
==========

## 3.1.9

- Fixes issue relating to `animation.clampHeight` where the height was not correctly applied causing scroll jumping in certain situations.

## 3.1.8

- Adds ability to bind live controls where multiple parents exist. Required for Pagination 3.2.0.
Expand Down
8 changes: 4 additions & 4 deletions demos/mixitup.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/mixitup.js
@@ -1,7 +1,7 @@
/**!
* MixItUp v3.1.8
* MixItUp v3.1.9
* A high-performance, dependency-free library for animated filtering, sorting and more
* Build 8b4a57ae-dad2-4d16-bc0b-024c6a7b1cb0
* Build 659c281f-47ce-429c-a467-6e1d960b3f52
*
* @copyright Copyright 2014-2017 KunkaLabs Limited.
* @author KunkaLabs Limited.
Expand Down Expand Up @@ -6359,7 +6359,7 @@
// Prevent scrollbar flicker on non-inertial scroll platforms by clamping height

if (self.config.animation.clampHeight) {
self.dom.parent.style.height = operation.startHeight;
self.dom.parent.style.height = operation.startHeight + 'px';
self.dom.parent.style.overflow = 'hidden';
}

Expand Down Expand Up @@ -10481,5 +10481,5 @@
mixitup.BaseStatic.call(mixitup.constructor);

mixitup.NAME = 'mixitup';
mixitup.CORE_VERSION = '3.1.8';
mixitup.CORE_VERSION = '3.1.9';
})(window);
8 changes: 4 additions & 4 deletions dist/mixitup.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "mixitup",
"title": "MixItUp",
"version": "3.1.8",
"version": "3.1.9",
"description": "A high-performance, dependency-free library for animated filtering, sorting and more",
"author": "KunkaLabs Limited",
"homepage": "https://www.kunkalabs.com/mixitup/",
Expand Down
2 changes: 1 addition & 1 deletion src/mixer.js
Expand Up @@ -1476,7 +1476,7 @@ h.extend(mixitup.Mixer.prototype,
// Prevent scrollbar flicker on non-inertial scroll platforms by clamping height

if (self.config.animation.clampHeight) {
self.dom.parent.style.height = operation.startHeight;
self.dom.parent.style.height = operation.startHeight + 'px';
self.dom.parent.style.overflow = 'hidden';
}

Expand Down

0 comments on commit ee072f5

Please sign in to comment.