summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/merge_conflicts/mixins/line_conflict_actions.js.es6
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 = {}));