gitlab-org--gitlab-foss/app/assets/javascripts/commit.js

15 lines
310 B
JavaScript
Raw Normal View History

/* eslint-disable func-names, space-before-function-paren, wrap-iife */
/* global CommitFile */
2016-07-24 20:45:11 +00:00
(function() {
this.Commit = (function() {
function Commit() {
$('.files .diff-file').each(function() {
return new CommitFile(this);
});
}
return Commit;
})();
}).call(window);