Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
08d457f1
Commit
08d457f1
authored
Oct 31, 2017
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CE->EE conflict resolvation[ci skip]
parent
93410c60
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
12 deletions
+0
-12
app/assets/javascripts/boards/stores/boards_store.js
app/assets/javascripts/boards/stores/boards_store.js
+0
-3
app/assets/javascripts/init_issuable_sidebar.js
app/assets/javascripts/init_issuable_sidebar.js
+0
-3
app/assets/javascripts/issuable_form.js
app/assets/javascripts/issuable_form.js
+0
-3
app/assets/javascripts/milestone_select.js
app/assets/javascripts/milestone_select.js
+0
-3
No files found.
app/assets/javascripts/boards/stores/boards_store.js
View file @
08d457f1
...
...
@@ -25,14 +25,11 @@ gl.issueBoards.BoardsStore = {
this
.
state
.
lists
=
[];
this
.
filter
.
path
=
getUrlParamsArray
().
join
(
'
&
'
);
this
.
detail
=
{
issue
:
{}
};
<<<<<<<
HEAD
},
createNewListDropdownData
()
{
this
.
state
.
currentBoard
=
{};
this
.
state
.
currentPage
=
''
;
this
.
state
.
reload
=
false
;
=======
>>>>>>>
bfb5107ae720232a15060ee55feba213ee7dd097
},
addList
(
listObj
,
defaultAvatar
)
{
const
list
=
new
List
(
listObj
,
defaultAvatar
);
...
...
app/assets/javascripts/init_issuable_sidebar.js
View file @
08d457f1
/* eslint-disable no-new */
/* global MilestoneSelect */
/* global LabelsSelect */
<<<<<<<
HEAD
/* global WeightSelect */
=======
>>>>>>>
bfb5107ae720232a15060ee55feba213ee7dd097
import
IssuableContext
from
'
./issuable_context
'
;
/* global Sidebar */
...
...
app/assets/javascripts/issuable_form.js
View file @
08d457f1
...
...
@@ -20,10 +20,7 @@ export default class IssuableForm {
new
GfmAutoComplete
(
gl
.
GfmAutoComplete
&&
gl
.
GfmAutoComplete
.
dataSources
).
setup
();
new
UsersSelect
();
<<<<<<<
HEAD
groupsSelect
();
=======
>>>>>>>
bfb5107ae720232a15060ee55feba213ee7dd097
new
ZenMode
();
this
.
titleField
=
this
.
form
.
find
(
'
input[name*="[title]"]
'
);
...
...
app/assets/javascripts/milestone_select.js
View file @
08d457f1
...
...
@@ -148,7 +148,6 @@ import _ from 'underscore';
$
(
`[data-milestone-id="
${
selectedMilestone
}
"] > a`
,
$el
).
addClass
(
'
is-active
'
);
},
vue
:
$dropdown
.
hasClass
(
'
js-issue-board-sidebar
'
),
<<<<<<<
HEAD
hideRow
:
function
(
milestone
)
{
if
(
$
(
'
html
'
).
hasClass
(
'
issue-boards-page
'
)
&&
!
$dropdown
.
hasClass
(
'
js-issue-board-sidebar
'
)
&&
!
$dropdown
.
closest
(
'
.add-issues-modal
'
).
length
&&
gl
.
issueBoards
.
BoardsStore
.
state
.
currentBoard
.
milestone
)
{
...
...
@@ -165,8 +164,6 @@ import _ from 'underscore';
return
true
;
},
=======
>>>>>>>
bfb5107ae720232a15060ee55feba213ee7dd097
clicked
:
function
(
options
)
{
const
{
$el
,
e
}
=
options
;
let
selected
=
options
.
selectedObj
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment