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

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

window.Commit = Commit;