aboutsummaryrefslogtreecommitdiffstats
path: root/github-show-full-commit-message.js
blob: 112ab68bed00c9565227c79996f62448567b258e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(function() {
	if (window.location.href.indexOf('github.com') != -1) {
		var $hidden_text_expander = $('.commit .hidden-text-expander .js-details-target');
		
		if ($('.commit.open').length > 0) {
			$('.commit').removeClass('open');
		}
		else {
			$hidden_text_expander.click();
		}
	}
})();