BigW Consortium Gitlab

commit.js 265 Bytes
Newer Older
1
/* eslint-disable func-names, space-before-function-paren, wrap-iife */
2 3
/* global CommitFile */

4 5 6 7 8 9
window.Commit = (function() {
  function Commit() {
    $('.files .diff-file').each(function() {
      return new CommitFile(this);
    });
  }
Fatih Acet committed
10

11 12
  return Commit;
})();