BigW Consortium Gitlab

project_import.js 363 Bytes
Newer Older
1
/* eslint-disable func-names, space-before-function-paren, wrap-iife, prefer-arrow-callback, no-undef, padded-blocks, max-len */
Fatih Acet committed
2 3 4 5 6 7 8 9 10 11 12 13 14
(function() {
  this.ProjectImport = (function() {
    function ProjectImport() {
      setTimeout(function() {
        return Turbolinks.visit(location.href);
      }, 5000);
    }

    return ProjectImport;

  })();

}).call(this);