diff options
| author | Teddy Wing | 2014-03-26 20:36:10 -0400 |
|---|---|---|
| committer | Teddy Wing | 2014-03-26 20:36:10 -0400 |
| commit | cc6387d5e21af1d77c9adfc377c236a837b38add (patch) | |
| tree | 3e2c02f5b92b894965c2cee1a025ebcd38845b5e | |
| parent | ea3392126ccb88f2f7cf963a73d0a98fd976847e (diff) | |
| download | GitHub-Show-Full-Commit-Message-Bookmarklet-cc6387d5e21af1d77c9adfc377c236a837b38add.tar.bz2 | |
Initial version of bookmarklet
Expands all commits on the page.
TODO: collapse commits on toggle
| -rw-r--r-- | github-show-full-commit-message.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/github-show-full-commit-message.js b/github-show-full-commit-message.js new file mode 100644 index 0000000..ee8edab --- /dev/null +++ b/github-show-full-commit-message.js @@ -0,0 +1,5 @@ +(function() { + if (window.location.href.indexOf('github.com') != -1) { + $('.commit-message .hidden-text-expander .js-details-target').click(); + } +})();
\ No newline at end of file |
