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
7275b3dc
Commit
7275b3dc
authored
Jul 26, 2017
by
Jacob Schatz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ide' of gitlab.com:gitlab-org/gitlab-ce into ide
parents
631118e7
5e4f18e2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
13 deletions
+10
-13
app/assets/javascripts/repo/index.js
app/assets/javascripts/repo/index.js
+1
-1
app/assets/javascripts/repo/repo_editor.vue
app/assets/javascripts/repo/repo_editor.vue
+2
-8
app/assets/javascripts/repo/repo_store.js
app/assets/javascripts/repo/repo_store.js
+1
-0
spec/javascripts/helpers/scroll_helper_spec.js
spec/javascripts/helpers/scroll_helper_spec.js
+5
-3
spec/javascripts/repo/repo_binary_viewer_spec.js
spec/javascripts/repo/repo_binary_viewer_spec.js
+1
-1
No files found.
app/assets/javascripts/repo/index.js
View file @
7275b3dc
...
...
@@ -29,7 +29,7 @@ function initRepo() {
data
:
()
=>
Store
,
template
:
`
<div class="tree-content-holder">
<repo-sidebar/><div class="panel-right">
<repo-sidebar/><div class="panel-right"
:class="{'edit-mode': readOnly}"
>
<repo-tabs/>
<repo-file-buttons/>
<repo-editor/>
...
...
app/assets/javascripts/repo/repo_editor.vue
View file @
7275b3dc
...
...
@@ -66,15 +66,9 @@ const RepoEditor = {
},
editMode
()
{
const
panelClassList
=
document
.
querySelector
(
'
.panel-right
'
).
classList
;
let
readOnly
=
false
;
const
readOnly
=
!
this
.
editMode
;
if
(
this
.
editMode
)
{
panelClassList
.
add
(
'
edit-mode
'
);
}
else
{
panelClassList
.
remove
(
'
edit-mode
'
);
readOnly
=
true
;
}
Store
.
readOnly
=
readOnly
;
this
.
monacoInstance
.
updateOptions
({
readOnly
,
...
...
app/assets/javascripts/repo/repo_store.js
View file @
7275b3dc
...
...
@@ -60,6 +60,7 @@ const RepoStore = {
tree
:
false
,
blob
:
false
,
},
readOnly
:
true
,
// mutations
...
...
spec/javascripts/helpers/scroll_helper_spec.js
View file @
7275b3dc
...
...
@@ -6,7 +6,7 @@ describe('ScrollHelper', () => {
describe
(
'
getScrollWidth
'
,
()
=>
{
const
parent
=
jasmine
.
createSpyObj
(
'
parent
'
,
[
'
css
'
,
'
appendTo
'
,
'
remove
'
]);
const
child
=
jasmine
.
createSpyObj
(
'
child
'
,
[
'
css
'
,
'
appendTo
'
,
'
outerWidth
'
]);
const
child
=
jasmine
.
createSpyObj
(
'
child
'
,
[
'
css
'
,
'
appendTo
'
,
'
get
'
]);
let
scrollWidth
;
beforeEach
(()
=>
{
...
...
@@ -15,7 +15,9 @@ describe('ScrollHelper', () => {
parent
.
css
.
and
.
returnValue
(
parent
);
child
.
css
.
and
.
returnValue
(
child
);
child
.
outerWidth
.
and
.
returnValue
(
width
);
child
.
get
.
and
.
returnValue
({
offsetWidth
:
width
,
});
scrollWidth
=
ScrollHelper
.
getScrollWidth
();
});
...
...
@@ -35,7 +37,7 @@ describe('ScrollHelper', () => {
});
expect
(
child
.
appendTo
).
toHaveBeenCalledWith
(
parent
);
expect
(
parent
.
appendTo
).
toHaveBeenCalledWith
(
'
body
'
);
expect
(
child
.
outerWidth
).
toHaveBeenCalled
(
);
expect
(
child
.
get
).
toHaveBeenCalledWith
(
0
);
expect
(
parent
.
remove
).
toHaveBeenCalled
();
expect
(
scrollWidth
).
toEqual
(
100
-
width
);
});
...
...
spec/javascripts/repo/repo_binary_viewer_spec.js
View file @
7275b3dc
...
...
@@ -40,7 +40,7 @@ describe('RepoBinaryViewer', () => {
Store
.
activeFile
=
activeFile
;
const
vm
=
createComponent
();
expect
(
vm
.
$el
.
querySelector
(
'
:scope > div
'
)).
toEqual
(
activeFile
.
html
);
expect
(
vm
.
$el
.
querySelector
(
'
:scope > div
'
)
.
innerHTML
).
toEqual
(
activeFile
.
html
);
});
it
(
'
does not render if no binary
'
,
()
=>
{
...
...
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