16 lines
325 B
JavaScript
16 lines
325 B
JavaScript
/* eslint-disable func-names, space-before-function-paren, wrap-iife, padded-blocks */
|
|
/* global CommitFile */
|
|
|
|
(function() {
|
|
this.Commit = (function() {
|
|
function Commit() {
|
|
$('.files .diff-file').each(function() {
|
|
return new CommitFile(this);
|
|
});
|
|
}
|
|
|
|
return Commit;
|
|
|
|
})();
|
|
|
|
}).call(this);
|