Skip to content

Commit

Permalink
v3.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Kunka committed Feb 9, 2017
1 parent 0da0884 commit adfda8a
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
==========

## 3.1.7

- Fixed duplicate hook `beforeCacheDom` in `Target#cacheDom`. Now renamed to `afterCacheDom`.

## 3.1.6

- Added composer.json
Expand Down
6 changes: 3 additions & 3 deletions demos/mixitup.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/mixitup.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**!
* MixItUp v3.1.6
* MixItUp v3.1.7
* A high-performance, dependency-free library for animated filtering, sorting and more
* Build 82b49dcf-748d-446f-b5f7-ab14043f4c0f
* Build dcb11d27-0cb4-45f7-949b-e3742b467160
*
* @copyright Copyright 2014-2017 KunkaLabs Limited.
* @author KunkaLabs Limited.
Expand Down Expand Up @@ -9288,7 +9288,7 @@

self.dom.el = el;

self.callActions('beforeCacheDom', arguments);
self.callActions('afterCacheDom', arguments);
},

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

mixitup.NAME = 'mixitup';
mixitup.CORE_VERSION = '3.1.6';
mixitup.CORE_VERSION = '3.1.7';
})(window);
6 changes: 3 additions & 3 deletions dist/mixitup.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mixitup",
"title": "MixItUp",
"version": "3.1.6",
"version": "3.1.7",
"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/target.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ h.extend(mixitup.Target.prototype, {

self.dom.el = el;

self.callActions('beforeCacheDom', arguments);
self.callActions('afterCacheDom', arguments);
},

/**
Expand Down

0 comments on commit adfda8a

Please sign in to comment.