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: f1c4a9fe542e3d42fa5458def75f42cda7e05aa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* eslint-disable */
(function() {
  this.ProjectImport = (function() {
    function ProjectImport() {
      setTimeout(function() {
        return Turbolinks.visit(location.href);
      }, 5000);
    }

    return ProjectImport;

  })();

}).call(this);