Skip to content

Commit

Permalink
Release v2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Kunka authored and Patrick Kunka committed Mar 6, 2014
1 parent 0d3a350 commit a8f51df
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ MixItUp ChangeLog
- Fixed some IE8 issues.

## 2.0.2
- Fixed controls.toggleFilterButtons config option
- Fixed `controls.toggleFilterButtons` config option

## 2.0.3
- Fixed `_updateControls()` bug when `controls.toggleFilterButtons` is set to `true`
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mixitup",
"version": "2.0.2",
"version": "2.0.3",
"dependencies": {
"jquery": ">=1.7"
}
Expand Down
4 changes: 2 additions & 2 deletions build/jquery.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,6 +1,6 @@
{
"name": "mixitup",
"version": "2.0.2",
"version": "2.0.3",
"devDependencies": {
"grunt": "~0.4.1",
"matchdep": "~0.1.1",
Expand Down
6 changes: 3 additions & 3 deletions src/jquery.mixitup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**!
* MixItUp v2.0.2
* MixItUp v2.0.3
*
* @copyright Copyright 2014 KunkaLabs Limited.
* @author KunkaLabs Limited.
Expand Down Expand Up @@ -477,7 +477,7 @@
sort: command.sort
},
update = function($el, filter){
multi ?
(multi && type == 'filter') ?
$el.filter(filter).addClass(self.controls.activeClass) :
$el.removeClass(self.controls.activeClass).filter(filter).addClass(self.controls.activeClass);
},
Expand Down Expand Up @@ -1591,7 +1591,7 @@

if(!self._mixing){
if(self.controls.enable && !self._clicking){
self._updateControls(args.command);
self._updateControls(args.command, self.controls.toggleFilterButtons);
}
(self._queue.length < 2) && (self._clicking = false);

Expand Down

0 comments on commit a8f51df

Please sign in to comment.