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

line_conflict_actions.js « mixins « merge_conflicts « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53e000d7e9ecccdc5471f387bad6c72072c112c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable no-param-reassign, comma-dangle */

((global) => {
  global.mergeConflicts = global.mergeConflicts || {};

  global.mergeConflicts.actions = {
    methods: {
      handleSelected(file, sectionId, selection) {
        gl.mergeConflicts.mergeConflictsStore.handleSelected(file, sectionId, selection);
      }
    }
  };
})(window.gl || (window.gl = {}));