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

index.js « abuse_reports « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fff4ad8daa047c552c6bfb8e489a5d89b8abeb04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Vue from 'vue';
import LinksToSpamInput from './components/links_to_spam_input.vue';

export const initLinkToSpam = () => {
  const el = document.getElementById('js-links-to-spam');

  if (!el) return false;

  const { links } = el.dataset;

  return new Vue({
    el,
    name: 'LinksToSpamRoot',
    render(createElement) {
      return createElement(LinksToSpamInput, {
        props: {
          previousLinks: JSON.parse(links),
        },
      });
    },
  });
};