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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-10-20 00:09:06 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-10-20 00:09:06 +0300
commit376ae6f3b376d6956fe037c9097b48a2e4867859 (patch)
tree80fa30139aa81d962efed6ebba47d81170419bb1 /app/assets/javascripts/snippets
parentb9d98fe10a624d9a6033c516c970954b4fc09372 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/snippets')
-rw-r--r--app/assets/javascripts/snippets/index.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/assets/javascripts/snippets/index.js b/app/assets/javascripts/snippets/index.js
index 2c89c206240..b55e1baf41e 100644
--- a/app/assets/javascripts/snippets/index.js
+++ b/app/assets/javascripts/snippets/index.js
@@ -44,11 +44,3 @@ export default function appFactory(el, Component) {
},
});
}
-
-export const SnippetEditInit = () => {
- import('./components/edit.vue')
- .then(({ default: SnippetsEdit }) => {
- appFactory(document.getElementById('js-snippet-edit'), SnippetsEdit);
- })
- .catch(() => {});
-};