BigW Consortium Gitlab

line_conflict_actions.js.es6 387 Bytes
Newer Older
1 2
/* eslint-disable no-param-reassign, comma-dangle, padded-blocks */

3 4 5 6 7 8 9 10 11 12 13 14
((global) => {
  global.mergeConflicts = global.mergeConflicts || {};

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

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