gitlab-org--gitlab-foss/app/assets/javascripts/commit.js
2017-01-18 17:16:41 -06:00

14 lines
308 B
JavaScript

/* 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(this);