Fix expanding/collapsing README/ChangeLog

This commit is contained in:
Michael Snoyman 2015-10-06 06:58:00 +03:00
parent ddd8734604
commit 67c43193da

View File

@ -1 +1,13 @@
hljs.initHighlightingOnLoad();
$(function(){
hljs.initHighlightingOnLoad();
$('.expanding').each(function(){
var $this = $(this);
if ($this.height() > 300) {
$this.addClass('collapsed');
$this.find('.bottom-gradient').click(function(){
$this.removeClass('collapsed');
});
}
});
});