Skip to content

Commit

Permalink
Release v0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
floyd_hawkes committed Apr 10, 2015
1 parent 00e78d5 commit 6cf1aa2
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 16 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.9"></a>
### 0.2.9 (2015-04-10)


<a name="0.2.8"></a>
### 0.2.8 (2015-04-09)

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.8",
"version": "0.2.9",
"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.8 - 2015-04-09
/*! deckster - v0.2.9 - 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
10 changes: 5 additions & 5 deletions dist/jquery.deckster.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! deckster - v0.2.8 - 2015-04-09
/*! deckster - v0.2.9 - 2015-04-10
* https://github.com/DecksterTeam/DecksterJS
* Copyright (c) 2015 Deckster Team; Licensed MIT */
;(function (window, undefined) {
Expand Down Expand Up @@ -726,9 +726,9 @@

if (cb) {
cb.call(self);
} else {
self.options.onExpand.call(self);
}

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

Expand All @@ -750,9 +750,9 @@

if (cb) {
cb.call(self);
} else {
self.options.onCollapse.call(self);
}

self.options.onCollapse.call(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.8",
"version": "0.2.9",
"description": "decksterjs",
"keywords": [
"jquery-plugin"
Expand Down
8 changes: 4 additions & 4 deletions src/main/scripts/card.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,9 +518,9 @@

if (cb) {
cb.call(self);
} else {
self.options.onExpand.call(self);
}

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

Expand All @@ -542,9 +542,9 @@

if (cb) {
cb.call(self);
} else {
self.options.onCollapse.call(self);
}

self.options.onCollapse.call(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.8 - 2015-04-09
/*! deckster - v0.2.9 - 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 6cf1aa2

Please sign in to comment.