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
Tatuya Kamada
gitlab-ce
Commits
d858c548
Commit
d858c548
authored
Oct 26, 2016
by
Regis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
conform to eslint
parent
4c8a6b61
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
10 deletions
+14
-10
app/assets/javascripts/pipeline.vue.js.es6
app/assets/javascripts/pipeline.vue.js.es6
+6
-4
app/assets/javascripts/pipelines.vue.js.es6
app/assets/javascripts/pipelines.vue.js.es6
+8
-6
No files found.
app/assets/javascripts/pipeline.vue.js.es6
View file @
d858c548
//= require vue
/* global Vue, gl */
/* eslint-disable no-param-reassign */
(
gl
=> {
(
(gl)
=> {
gl.VuePipeLine = Vue.extend({
props: ['pipeline'],
template: `
...
...
@@ -9,6 +11,6 @@
{{ pipeline.status }}
</td>
</div>
`
})
})(window.gl || (window.gl = {}))
`
,
})
;
})(window.gl || (window.gl = {}))
;
app/assets/javascripts/pipelines.vue.js.es6
View file @
d858c548
//= require vue
/* global Vue, gl */
/* eslint-disable no-param-reassign */
(
gl
=> {
(
(gl)
=> {
gl.VuePipeLines = Vue.extend({
props: ['pipelines', 'count'],
template: `
...
...
@@ -29,8 +31,8 @@
`,
computed: {
pipes() {
return this.pipelines
}
}
})
})(window.gl || (window.gl = {}))
return this.pipelines
;
}
,
}
,
})
;
})(window.gl || (window.gl = {}))
;
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