debian-mirror-gitlab/app/assets/javascripts/commit.js

13 lines
265 B
JavaScript
Raw Normal View History

2017-08-17 22:00:37 +05:30
/* eslint-disable func-names, space-before-function-paren, wrap-iife */
/* global CommitFile */
2016-09-13 17:45:13 +05:30
2017-08-17 22:00:37 +05:30
window.Commit = (function() {
function Commit() {
$('.files .diff-file').each(function() {
return new CommitFile(this);
});
}
2016-09-13 17:45:13 +05:30
2017-08-17 22:00:37 +05:30
return Commit;
})();