summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/commit.js
blob: 0708c86feb29af1f8dc88b3719d7bfd690c81475 (plain)
1
2
3
4
5
6
7
8
9
10
this.Commit = (function() {
  function Commit() {
    $('.files .diff-file').each(function() {
      return new CommitFile(this);
    });
  }

  return Commit;

})();