BigW Consortium Gitlab

file.js 317 Bytes
Newer Older
1
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-new */
2 3
/* global ImageFile */

Fatih Acet committed
4 5 6 7
(function() {
  this.CommitFile = (function() {
    function CommitFile(file) {
      if ($('.image', file).length) {
8
        new gl.ImageFile(file);
Fatih Acet committed
9 10 11 12 13
      }
    }

    return CommitFile;
  })();
14
}).call(window);