summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/project_import_gitlab_project.js
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);
};