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

line_conflict_actions.js.es6 « 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: c8de586aa212720d182badd13ba3ff647f714038 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable */
((global) => {
  global.mergeConflicts = global.mergeConflicts || {};

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

})(window.gl || (window.gl = {}));