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

inline_conflict_lines.js.es6 « components « merge_conflicts « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74544b7d0c73dbd09a982b7dbf2687fceab67044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* eslint-disable padded-blocks, no-param-reassign, comma-dangle */
/* global Vue */

((global) => {

  global.mergeConflicts = global.mergeConflicts || {};

  global.mergeConflicts.inlineConflictLines = Vue.extend({
    props: {
      file: Object
    },
    mixins: [global.mergeConflicts.utils, global.mergeConflicts.actions],
  });

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