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: 4e20fce146089060355e7f06511fcc0936d45463 (plain)
1
2
3
4
5
6
7
8
9
import $ from 'jquery';
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);
};