Commit afa7c81f authored by Valery Sizov's avatar Valery Sizov

Resolve JS conflicts[ci skip]

parent 07dc6c22
...@@ -212,17 +212,6 @@ rake brakeman: *exec ...@@ -212,17 +212,6 @@ rake brakeman: *exec
rake flay: *exec rake flay: *exec
license_finder: *exec license_finder: *exec
rake downtime_check: *exec rake downtime_check: *exec
<<<<<<< HEAD
=======
rake ee_compat_check:
<<: *exec
only:
- branches
except:
- master
- tags
allow_failure: yes
>>>>>>> 144358e98ee1b25b61854a3471e21e100ace9db5
rake db:migrate:reset: rake db:migrate:reset:
stage: test stage: test
...@@ -336,15 +325,9 @@ trigger_docs: ...@@ -336,15 +325,9 @@ trigger_docs:
cache: {} cache: {}
artifacts: {} artifacts: {}
script: script:
<<<<<<< HEAD
- "curl -X POST -F token=${DOCS_TRIGGER_TOKEN} -F ref=master -F variables[PROJECT]=ee https://gitlab.com/api/v3/projects/38069/trigger/builds" - "curl -X POST -F token=${DOCS_TRIGGER_TOKEN} -F ref=master -F variables[PROJECT]=ee https://gitlab.com/api/v3/projects/38069/trigger/builds"
only: only:
- master@gitlab-org/gitlab-ee - master@gitlab-org/gitlab-ee
=======
- "curl -X POST -F token=${DOCS_TRIGGER_TOKEN} -F ref=master -F variables[PROJECT]=ce https://gitlab.com/api/v3/projects/38069/trigger/builds"
only:
- master@gitlab-org/gitlab-ce
>>>>>>> 144358e98ee1b25b61854a3471e21e100ace9db5
# Notify slack in the end # Notify slack in the end
......
...@@ -18,11 +18,8 @@ ...@@ -18,11 +18,8 @@
/*= require jquery.atwho */ /*= require jquery.atwho */
/*= require jquery.scrollTo */ /*= require jquery.scrollTo */
/*= require jquery.turbolinks */ /*= require jquery.turbolinks */
<<<<<<< HEAD
/*= require jquery.tablesorter */ /*= require jquery.tablesorter */
=======
/*= require js.cookie */ /*= require js.cookie */
>>>>>>> 144358e98ee1b25b61854a3471e21e100ace9db5
/*= require turbolinks */ /*= require turbolinks */
/*= require autosave */ /*= require autosave */
/*= require bootstrap/affix */ /*= require bootstrap/affix */
......
...@@ -8,11 +8,8 @@ ...@@ -8,11 +8,8 @@
//= require_tree ./mixins //= require_tree ./mixins
//= require_tree ./filters //= require_tree ./filters
//= require ./components/board //= require ./components/board
<<<<<<< HEAD
//= require ./components/boards_selector //= require ./components/boards_selector
=======
//= require ./components/board_sidebar //= require ./components/board_sidebar
>>>>>>> 144358e98ee1b25b61854a3471e21e100ace9db5
//= require ./components/new_list_dropdown //= require ./components/new_list_dropdown
//= require ./vue_resource_interceptor //= require ./vue_resource_interceptor
...@@ -30,11 +27,8 @@ $(() => { ...@@ -30,11 +27,8 @@ $(() => {
el: $boardApp, el: $boardApp,
components: { components: {
'board': gl.issueBoards.Board, 'board': gl.issueBoards.Board,
<<<<<<< HEAD 'boards-selector': gl.issueBoards.BoardsSelector,
'boards-selector': gl.issueBoards.BoardsSelector
=======
'board-sidebar': gl.issueBoards.BoardSidebar 'board-sidebar': gl.issueBoards.BoardSidebar
>>>>>>> 144358e98ee1b25b61854a3471e21e100ace9db5
}, },
data: { data: {
state: Store.state, state: Store.state,
......
/* eslint-disable */ /* eslint-disable */
class BoardService { class BoardService {
constructor (root, boardId) { constructor (root, boardId) {
<<<<<<< HEAD
Vue.http.options.root = root;
this.boards = Vue.resource(`${root}{/id}.json`); this.boards = Vue.resource(`${root}{/id}.json`);
=======
>>>>>>> 144358e98ee1b25b61854a3471e21e100ace9db5
this.lists = Vue.resource(`${root}/${boardId}/lists{/id}`, {}, { this.lists = Vue.resource(`${root}/${boardId}/lists{/id}`, {}, {
generate: { generate: {
method: 'POST', method: 'POST',
......
<<<<<<< HEAD /* eslint-disable */
(global => { (global => {
global.gl = global.gl || {}; global.gl = global.gl || {};
=======
/* eslint-disable */
class ProtectedBranchDropdown {
constructor(options) {
this.onSelect = options.onSelect;
this.$dropdown = options.$dropdown;
this.$dropdownContainer = this.$dropdown.parent();
this.$dropdownFooter = this.$dropdownContainer.find('.dropdown-footer');
this.$protectedBranch = this.$dropdownContainer.find('.create-new-protected-branch');
>>>>>>> 144358e98ee1b25b61854a3471e21e100ace9db5
class ProtectedBranchDropdown { class ProtectedBranchDropdown {
constructor(options) { constructor(options) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment