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
be39e038
Commit
be39e038
authored
Nov 15, 2017
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix conflict for app/assets/javascripts/project.js
parent
d2595ea3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
22 deletions
+0
-22
app/assets/javascripts/project.js
app/assets/javascripts/project.js
+0
-22
No files found.
app/assets/javascripts/project.js
View file @
be39e038
...
...
@@ -13,7 +13,6 @@ export default class Project {
if
(
selectedCloneOption
.
length
>
0
)
{
$
(
`a:contains('
${
selectedCloneOption
}
')`
,
$cloneOptions
).
addClass
(
'
is-active
'
);
}
<<<<<<<
HEAD
$
(
'
a
'
,
$cloneOptions
).
on
(
'
click
'
,
(
e
)
=>
{
const
$this
=
$
(
e
.
currentTarget
);
...
...
@@ -31,20 +30,6 @@ export default class Project {
cloneUrlPrimary
:
$this
.
data
(
'
primaryUrl
'
)
||
''
,
});
=======
$
(
'
a
'
,
$cloneOptions
).
on
(
'
click
'
,
(
e
)
=>
{
const
$this
=
$
(
e
.
currentTarget
);
const
url
=
$this
.
attr
(
'
href
'
);
e
.
preventDefault
();
$
(
'
.is-active
'
,
$cloneOptions
).
not
(
$this
).
removeClass
(
'
is-active
'
);
$this
.
toggleClass
(
'
is-active
'
);
$projectCloneField
.
val
(
url
);
$cloneBtnText
.
text
(
$this
.
text
());
>>>>>>>
upstream
/
master
return
$
(
'
.clone
'
).
text
(
url
);
});
// Ref switcher
...
...
@@ -62,7 +47,6 @@ export default class Project {
$
(
this
).
parents
(
'
.no-password-message
'
).
remove
();
return
e
.
preventDefault
();
});
<<<<<<<
HEAD
$
(
'
.hide-shared-runner-limit-message
'
).
on
(
'
click
'
,
function
(
e
)
{
var
$alert
=
$
(
this
).
parents
(
'
.shared-runner-quota-message
'
);
var
scope
=
$alert
.
data
(
'
scope
'
);
...
...
@@ -74,12 +58,6 @@ export default class Project {
}
static
projectSelectDropdown
()
{
=======
Project
.
projectSelectDropdown
();
}
static
projectSelectDropdown
()
{
>>>>>>>
upstream
/
master
new
ProjectSelect
();
$
(
'
.project-item-select
'
).
on
(
'
click
'
,
e
=>
Project
.
changeProject
(
$
(
e
.
currentTarget
).
val
()));
}
...
...
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