Skip to content

Commit

Permalink
Merge branch 'release-0.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-ruehle committed Oct 30, 2014
2 parents 451b3c3 + 96bb734 commit dc139f6
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Paper Collapse (v0.2.0)
# Paper Collapse (v0.2.1)
Collapsible paper cards.
See [bbo-code.com](http://bbo-code.com/components/paper-collapse) for Documentations and Demos.

Expand Down
3 changes: 3 additions & 0 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,8 @@
</div>
</section>

<script>
$('.collapse-card').paperCollapse();
</script>
</body>
</html>
15 changes: 8 additions & 7 deletions js/paper-collapse.coffee
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
###
Paper Collapse v0.2.1
Collapsible paper cards.
Made with love by bbo - ©2014 Alexander Rühle
MIT License http://opensource.org/licenses/MIT
###
(($) ->
'use strict'
$.fn.paperCollapse = (options) ->
Expand All @@ -22,11 +30,4 @@
onHide: ->
onShowComplete: ->
onHideComplete: ->
return) jQuery

(($) ->
$ ->
$('.collapse-card').paperCollapse {}
return

return) jQuery
2 changes: 1 addition & 1 deletion paper-collapse.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*
Paper Collapse
Paper Collapse v0.2.1
Collapsible paper cards.
Expand Down
16 changes: 10 additions & 6 deletions paper-collapse.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@

/*
Paper Collapse v0.2.1
Collapsible paper cards.
Made with love by bbo - ©2014 Alexander Rühle
MIT License http://opensource.org/licenses/MIT
*/

(function() {
(function($) {
'use strict';
Expand Down Expand Up @@ -27,10 +37,4 @@
};
})(jQuery);

(function($) {
$(function() {
$('.collapse-card').paperCollapse({});
});
})(jQuery);

}).call(this);
2 changes: 1 addition & 1 deletion paper-collapse.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 scss/paper-collapse.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Paper Collapse
Paper Collapse v0.2.1
Collapsible paper cards.
Expand Down

0 comments on commit dc139f6

Please sign in to comment.