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

project_import_gitlab_project.js « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2c7d77bb2d5782c7f5a1ec02e835184c4d90ce2 (plain)
1
2
3
4
5
6
7
8
import { getParameterValues } from '../lib/utils/url_utility';

export default () => {
  const path = getParameterValues('path')[0];

  // get the path url and append it in the inputS
  $('.js-path-name').val(path);
};