Skip to content

Commit

Permalink
v3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickkunka committed Jun 27, 2017
1 parent b20f02f commit 1a4699d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion demos/mixitup.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/mixitup.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**!
* MixItUp v3.2.1
* A high-performance, dependency-free library for animated filtering, sorting and more
* Build 8064d103-d8f0-4f54-86d4-40e57700c549
* Build ea75207d-1036-4d1b-af10-9800590d2906
*
* @copyright Copyright 2014-2017 KunkaLabs Limited.
* @author KunkaLabs Limited.
Expand Down Expand Up @@ -9159,7 +9159,7 @@
*
* mixer.configure({
* render: {
* target: (item) => `<a href="/${item.slug}/" class="mix">${item.title}</div>`
* target: (item) => `<a href="/${item.slug}/" class="mix">${item.title}</a>`
* }
* });
*
Expand Down
2 changes: 1 addition & 1 deletion dist/mixitup.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/mixitup.Mixer.md
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ console.log(container.innerHTML);

mixer.configure({
render: {
target: (item) => `<a href="/${item.slug}/" class="mix">${item.title}</div>`
target: (item) => `<a href="/${item.slug}/" class="mix">${item.title}</a>`
}
});

Expand Down
2 changes: 1 addition & 1 deletion src/mixer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4231,7 +4231,7 @@ h.extend(mixitup.Mixer.prototype,
*
* mixer.configure({
* render: {
* target: (item) => `<a href="/${item.slug}/" class="mix">${item.title}</div>`
* target: (item) => `<a href="/${item.slug}/" class="mix">${item.title}</a>`
* }
* });
*
Expand Down

0 comments on commit 1a4699d

Please sign in to comment.