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