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

parallel_conflict_line.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: 797850262cc9e69460309f9bdbfbbb8d8814ede1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* eslint-disable */
((global) => {

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

  global.mergeConflicts.parallelConflictLine = Vue.extend({
    props: {
      file: Object,
      line: Object
    },
    mixins: [global.mergeConflicts.utils, global.mergeConflicts.actions],
    template: '#parallel-conflict-line'
  });

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