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
Boxiang Sun
gitlab-ce
Commits
c477ffbc
Commit
c477ffbc
authored
Jul 27, 2017
by
Luke "Jared" Bennett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove committed console.log's
parent
596e53e2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
6 deletions
+0
-6
app/assets/javascripts/project.js
app/assets/javascripts/project.js
+0
-1
app/assets/javascripts/repo/repo_commit_section.vue
app/assets/javascripts/repo/repo_commit_section.vue
+0
-2
app/assets/javascripts/repo/repo_editor.js
app/assets/javascripts/repo/repo_editor.js
+0
-1
app/assets/javascripts/repo/repo_helper.js
app/assets/javascripts/repo/repo_helper.js
+0
-1
app/assets/javascripts/repo/repo_store.js
app/assets/javascripts/repo/repo_store.js
+0
-1
No files found.
app/assets/javascripts/project.js
View file @
c477ffbc
...
...
@@ -77,7 +77,6 @@ import Cookies from 'js-cookie';
},
dataType
:
"
json
"
}).
done
(
function
(
refs
)
{
console
.
log
(
refs
);
return
callback
(
refs
);
});
},
...
...
app/assets/javascripts/repo/repo_commit_section.vue
View file @
c477ffbc
...
...
@@ -28,8 +28,6 @@ const RepoCommitSection = {
Api
.
commitMultiple
(
Store
.
projectId
,
payload
,
(
data
)
=>
{
Store
.
submitCommitsLoading
=
false
;
Flash
(
`Your changes have been committed. Commit
${
data
.
short_id
}
with
${
data
.
stats
.
additions
}
additions,
${
data
.
stats
.
deletions
}
deletions.`
,
'
notice
'
);
console
.
log
(
'
this.changedFiles
'
,
this
.
changedFiles
);
console
.
log
(
'
this.files
'
,
this
.
files
);
this
.
changedFiles
=
[];
this
.
openedFiles
=
[];
this
.
commitMessage
=
''
;
...
...
app/assets/javascripts/repo/repo_editor.js
View file @
c477ffbc
...
...
@@ -65,7 +65,6 @@ const RepoEditor = {
},
editMode
()
{
console
.
log
(
'
edit mode changed
'
);
const
readOnly
=
!
this
.
editMode
;
Store
.
readOnly
=
readOnly
;
...
...
app/assets/javascripts/repo/repo_helper.js
View file @
c477ffbc
...
...
@@ -135,7 +135,6 @@ const RepoHelper = {
getContent
(
treeOrFile
,
cb
)
{
let
file
=
treeOrFile
;
console
.
log
(
'
file
'
,
file
);
// const loadingData = RepoHelper.setLoading(true);
return
Service
.
getContent
()
.
then
((
response
)
=>
{
...
...
app/assets/javascripts/repo/repo_store.js
View file @
c477ffbc
...
...
@@ -143,7 +143,6 @@ const RepoStore = {
// now activate the right tab based on what you closed.
if
(
RepoStore
.
openedFiles
.
length
===
0
)
{
console
.
log
(
'
open 0
'
);
RepoStore
.
activeFile
=
{};
return
;
}
...
...
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