Remove diff notes webpack entry point
This commit is contained in:
parent
1553a34dbf
commit
2400c7bf4c
|
|
@ -5,6 +5,7 @@ import ShortcutsNavigation from '~/shortcuts_navigation';
|
||||||
import MiniPipelineGraph from '~/mini_pipeline_graph_dropdown';
|
import MiniPipelineGraph from '~/mini_pipeline_graph_dropdown';
|
||||||
import initNotes from '~/init_notes';
|
import initNotes from '~/init_notes';
|
||||||
import initChangesDropdown from '~/init_changes_dropdown';
|
import initChangesDropdown from '~/init_changes_dropdown';
|
||||||
|
import initDiffNotes from '~/diff_notes/diff_notes_bundle';
|
||||||
import { fetchCommitMergeRequests } from '~/commit_merge_requests';
|
import { fetchCommitMergeRequests } from '~/commit_merge_requests';
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', () => {
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
|
@ -19,4 +20,5 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||||
initChangesDropdown(document.querySelector('.navbar-gitlab').offsetHeight - stickyBarPaddingTop);
|
initChangesDropdown(document.querySelector('.navbar-gitlab').offsetHeight - stickyBarPaddingTop);
|
||||||
$('.commit-info.branches').load(document.querySelector('.js-commit-box').dataset.commitPath);
|
$('.commit-info.branches').load(document.querySelector('.js-commit-box').dataset.commitPath);
|
||||||
fetchCommitMergeRequests();
|
fetchCommitMergeRequests();
|
||||||
|
initDiffNotes();
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
- page_description @commit.description
|
- page_description @commit.description
|
||||||
- content_for :page_specific_javascripts do
|
- content_for :page_specific_javascripts do
|
||||||
= webpack_bundle_tag('common_vue')
|
= webpack_bundle_tag('common_vue')
|
||||||
= webpack_bundle_tag('diff_notes')
|
|
||||||
|
|
||||||
.container-fluid{ class: [limited_container_width, container_class] }
|
.container-fluid{ class: [limited_container_width, container_class] }
|
||||||
= render "commit_box"
|
= render "commit_box"
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,6 @@ var config = {
|
||||||
common_vue: './vue_shared/vue_resource_interceptor.js',
|
common_vue: './vue_shared/vue_resource_interceptor.js',
|
||||||
cycle_analytics: './cycle_analytics/cycle_analytics_bundle.js',
|
cycle_analytics: './cycle_analytics/cycle_analytics_bundle.js',
|
||||||
commit_pipelines: './commit/pipelines/pipelines_bundle.js',
|
commit_pipelines: './commit/pipelines/pipelines_bundle.js',
|
||||||
diff_notes: './diff_notes/diff_notes_bundle.js',
|
|
||||||
environments: './environments/environments_bundle.js',
|
environments: './environments/environments_bundle.js',
|
||||||
environments_folder: './environments/folder/environments_folder_bundle.js',
|
environments_folder: './environments/folder/environments_folder_bundle.js',
|
||||||
filtered_search: './filtered_search/filtered_search_bundle.js',
|
filtered_search: './filtered_search/filtered_search_bundle.js',
|
||||||
|
|
@ -247,7 +246,6 @@ var config = {
|
||||||
'commit_pipelines',
|
'commit_pipelines',
|
||||||
'cycle_analytics',
|
'cycle_analytics',
|
||||||
'deploy_keys',
|
'deploy_keys',
|
||||||
'diff_notes',
|
|
||||||
'environments',
|
'environments',
|
||||||
'environments_folder',
|
'environments_folder',
|
||||||
'filtered_search',
|
'filtered_search',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue