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

index.js « index « tags « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96e52850936255123f753a7d523e1cb71654d4e8 (plain)
1
2
3
4
5
6
7
8
9
import { initRemoveTag } from '../remove_tag';

document.addEventListener('DOMContentLoaded', () => {
  initRemoveTag({
    onDelete: (path) => {
      document.querySelector(`[data-path="${path}"]`).closest('.js-tag-list').remove();
    },
  });
});