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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
0c8c599f
Commit
0c8c599f
authored
Apr 17, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed context bar from ide.vue
parent
ed0a1818
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
22 deletions
+1
-22
app/assets/javascripts/ide/components/ide.vue
app/assets/javascripts/ide/components/ide.vue
+0
-6
app/assets/javascripts/ide/components/ide_tree.vue
app/assets/javascripts/ide/components/ide_tree.vue
+1
-0
app/assets/javascripts/ide/stores/actions/project.js
app/assets/javascripts/ide/stores/actions/project.js
+0
-1
app/assets/stylesheets/pages/repo.scss
app/assets/stylesheets/pages/repo.scss
+0
-15
No files found.
app/assets/javascripts/ide/components/ide.vue
View file @
0c8c599f
<
script
>
import
{
mapState
,
mapGetters
}
from
'
vuex
'
;
import
ideSidebar
from
'
./ide_side_bar.vue
'
;
import
ideContextbar
from
'
./ide_context_bar.vue
'
;
import
repoTabs
from
'
./repo_tabs.vue
'
;
import
ideStatusBar
from
'
./ide_status_bar.vue
'
;
import
repoEditor
from
'
./repo_editor.vue
'
;
...
...
@@ -9,7 +8,6 @@ import repoEditor from './repo_editor.vue';
export
default
{
components
:
{
ideSidebar
,
ideContextbar
,
repoTabs
,
ideStatusBar
,
repoEditor
,
...
...
@@ -92,9 +90,5 @@ export default {
</div>
</
template
>
</div>
<!-- <ide-contextbar
:no-changes-state-svg-path="noChangesStateSvgPath"
:committed-state-svg-path="committedStateSvgPath"
/> -->
</div>
</template>
app/assets/javascripts/ide/components/ide_tree.vue
View file @
0c8c599f
...
...
@@ -21,6 +21,7 @@ export default {
<
template
>
<div
v-if=
"currentTree"
class=
"ide-file-list"
>
<template
v-if=
"currentTree.loading"
>
...
...
app/assets/javascripts/ide/stores/actions/project.js
View file @
0c8c599f
...
...
@@ -55,7 +55,6 @@ export const getBranchData = (
branch
:
data
,
});
commit
(
types
.
SET_BRANCH_WORKING_REFERENCE
,
{
projectId
,
branchId
,
reference
:
id
});
commit
(
types
.
SET_CURRENT_BRANCH
,
branchId
);
resolve
(
data
);
})
.
catch
(()
=>
{
...
...
app/assets/stylesheets/pages/repo.scss
View file @
0c8c599f
...
...
@@ -421,12 +421,6 @@
margin-right
:
0
;
}
.projects-sidebar
{
display
:
flex
;
flex-direction
:
column
;
height
:
100%
;
}
.multi-file-commit-panel-inner
{
display
:
flex
;
flex
:
1
;
...
...
@@ -447,15 +441,6 @@
}
}
.multi-file-context-bar-icon
{
padding
:
10px
;
svg
{
margin-right
:
10px
;
float
:
left
;
}
}
.multi-file-commit-panel-section
{
display
:
flex
;
flex-direction
:
column
;
...
...
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