Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_import.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08334bf1ec516312d9131efca2e5e5121d5039bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable func-names, space-before-function-paren, wrap-iife, prefer-arrow-callback, max-len */

(function() {
  this.ProjectImport = (function() {
    function ProjectImport() {
      setTimeout(function() {
        return gl.utils.visitUrl(location.href);
      }, 5000);
    }

    return ProjectImport;
  })();
}).call(window);