summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/commit.js
blob: 566b322eb4906c947376c74d1a33c72045c63fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* eslint-disable func-names, space-before-function-paren, wrap-iife */
/* global CommitFile */

(function() {
  this.Commit = (function() {
    function Commit() {
      $('.files .diff-file').each(function() {
        return new CommitFile(this);
      });
    }

    return Commit;
  })();
}).call(window);