BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
c477ffbc
Unverified
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
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
6 deletions
+0
-6
project.js
app/assets/javascripts/project.js
+0
-1
repo_commit_section.vue
app/assets/javascripts/repo/repo_commit_section.vue
+0
-2
repo_editor.js
app/assets/javascripts/repo/repo_editor.js
+0
-1
repo_helper.js
app/assets/javascripts/repo/repo_helper.js
+0
-1
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