Skip to content

Commit

Permalink
Release v0.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
floyd_hawkes committed Apr 10, 2015
1 parent 6cf1aa2 commit 6d5c3b1
Show file tree
Hide file tree
Showing 9 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,3 +1,7 @@
<a name="0.2.10"></a>
### 0.2.10 (2015-04-10)


<a name="0.2.9"></a>
### 0.2.9 (2015-04-10)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "decksterjs",
"version": "0.2.9",
"version": "0.2.10",
"description": "decksterjs",
"dependencies": {
"jquery": "~1.11.2",
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.deckster.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! deckster - v0.2.9 - 2015-04-10
/*! deckster - v0.2.10 - 2015-04-10
* https://github.com/DecksterTeam/DecksterJS
* Copyright (c) 2015 Deckster Team; Licensed MIT */
.centered-vert, .deckster-deck-toolbar .deck-search-wrapper {
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.deckster.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! deckster - v0.2.9 - 2015-04-10
/*! deckster - v0.2.10 - 2015-04-10
* https://github.com/DecksterTeam/DecksterJS
* Copyright (c) 2015 Deckster Team; Licensed MIT */
;(function (window, undefined) {
Expand Down Expand Up @@ -728,7 +728,7 @@
cb.call(self);
}

self.options.onExpand.call(this);
self.options.onExpand(this);
});
};

Expand All @@ -752,7 +752,7 @@
cb.call(self);
}

self.options.onCollapse.call(this);
self.options.onCollapse(this);
});
};

Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.deckster.min.css

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

4 changes: 2 additions & 2 deletions dist/jquery.deckster.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": "deckster",
"version": "0.2.9",
"version": "0.2.10",
"description": "decksterjs",
"keywords": [
"jquery-plugin"
Expand Down
4 changes: 2 additions & 2 deletions src/main/scripts/card.js
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@
cb.call(self);
}

self.options.onExpand.call(this);
self.options.onExpand(this);
});
};

Expand All @@ -544,7 +544,7 @@
cb.call(self);
}

self.options.onCollapse.call(this);
self.options.onCollapse(this);
});
};

Expand Down
2 changes: 1 addition & 1 deletion src/main/styles/deckster.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! deckster - v0.2.9 - 2015-04-10
/*! deckster - v0.2.10 - 2015-04-10
* https://github.com/DecksterTeam/DecksterJS
* Copyright (c) 2015 Deckster Team; Licensed MIT */
.centered-vert, .deckster-deck-toolbar .deck-search-wrapper {
Expand Down

0 comments on commit 6d5c3b1

Please sign in to comment.