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
b17982cf
Commit
b17982cf
authored
Apr 10, 2017
by
Simon Knox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resolve js conflicts on ee-only features
parent
192df16d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
19 deletions
+0
-19
app/assets/javascripts/build.js
app/assets/javascripts/build.js
+0
-10
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+0
-6
app/assets/javascripts/filtered_search/filtered_search_manager.js
...ts/javascripts/filtered_search/filtered_search_manager.js
+0
-3
No files found.
app/assets/javascripts/build.js
View file @
b17982cf
...
...
@@ -82,15 +82,6 @@ window.Build = (function () {
Build
.
prototype
.
getBuildTrace
=
function
()
{
return
$
.
ajax
({
<<<<<<<
HEAD
url
:
this
.
pageUrl
+
"
/trace.json
"
,
dataType
:
'
json
'
,
success
:
function
(
buildData
)
{
$
(
'
.js-build-output
'
).
html
(
buildData
.
html
);
gl
.
utils
.
setCiStatusFavicon
(
`
${
this
.
pageUrl
}
/status.json`
);
if
(
window
.
location
.
hash
===
DOWN_BUILD_TRACE
)
{
$
(
"
html,body
"
).
scrollTop
(
this
.
$buildTrace
.
height
());
=======
url
:
`
${
this
.
pageUrl
}
/trace.json`
,
dataType
:
'
json
'
,
data
:
{
...
...
@@ -101,7 +92,6 @@ window.Build = (function () {
if
(
log
.
state
)
{
this
.
state
=
log
.
state
;
>>>>>>>
9
-
1
-
stable
}
if
(
log
.
append
)
{
...
...
app/assets/javascripts/dispatcher.js
View file @
b17982cf
...
...
@@ -48,12 +48,9 @@ import BlobLinePermalinkUpdater from './blob/blob_line_permalink_updater';
import
BlobForkSuggestion
from
'
./blob/blob_fork_suggestion
'
;
import
UserCallout
from
'
./user_callout
'
;
import
{
ProtectedTagCreate
,
ProtectedTagEditList
}
from
'
./protected_tags
'
;
<<<<<<<
HEAD
import
GeoNodes
from
'
./geo_nodes
'
;
import
ServiceDeskRoot
from
'
./projects/settings_service_desk/service_desk_root
'
;
=======
>>>>>>>
9
-
1
-
stable
const
ShortcutsBlob
=
require
(
'
./shortcuts_blob
'
);
...
...
@@ -358,10 +355,7 @@ const ShortcutsBlob = require('./shortcuts_blob');
// Initialize Protected Branch Settings
new
gl
.
ProtectedBranchCreate
();
new
gl
.
ProtectedBranchEditList
();
<<<<<<<
HEAD
new
UsersSelect
();
=======
>>>>>>>
9
-
1
-
stable
// Initialize Protected Tag Settings
new
ProtectedTagCreate
();
new
ProtectedTagEditList
();
...
...
app/assets/javascripts/filtered_search/filtered_search_manager.js
View file @
b17982cf
...
...
@@ -16,13 +16,10 @@ import eventHub from './event_hub';
this
.
tokensContainer
=
this
.
container
.
querySelector
(
'
.tokens-container
'
);
this
.
filteredSearchTokenKeys
=
gl
.
FilteredSearchTokenKeys
;
<<<<<<<
HEAD
if
(
page
===
'
issues
'
||
page
===
'
boards
'
)
{
this
.
filteredSearchTokenKeys
=
gl
.
FilteredSearchTokenKeysWithWeights
;
}
=======
>>>>>>>
9
-
1
-
stable
this
.
recentSearchesStore
=
new
RecentSearchesStore
();
let
recentSearchesKey
=
'
issue-recent-searches
'
;
if
(
page
===
'
merge_requests
'
)
{
...
...
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