remove annotations
This commit is contained in:
parent
7eef434c67
commit
90675b1380
|
@ -6,7 +6,6 @@ Controller = Ember.Controller.extend
|
||||||
|
|
||||||
repoBinding: 'repoController.repo'
|
repoBinding: 'repoController.repo'
|
||||||
commitBinding: 'job.commit'
|
commitBinding: 'job.commit'
|
||||||
annotationsBinding: 'job.annotations'
|
|
||||||
currentUserBinding: 'auth.currentUser'
|
currentUserBinding: 'auth.currentUser'
|
||||||
tabBinding: 'repoController.tab'
|
tabBinding: 'repoController.tab'
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
@import "app/forms";
|
@import "app/forms";
|
||||||
@import "app/github";
|
@import "app/github";
|
||||||
|
|
||||||
@import "app/main/annotations";
|
|
||||||
@import "app/userlike";
|
@import "app/userlike";
|
||||||
|
|
||||||
@import "app/main/log";
|
@import "app/main/log";
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
|
|
||||||
#annotations
|
|
||||||
@include clearfix
|
|
||||||
margin: 8px 0 25px 12px
|
|
||||||
padding: 12px 0 0 0
|
|
||||||
|
|
||||||
a
|
|
||||||
text-decoration: underline
|
|
||||||
|
|
||||||
img
|
|
||||||
border: none
|
|
||||||
|
|
||||||
.annotation
|
|
||||||
float: left
|
|
||||||
min-height: 25px
|
|
||||||
margin: 0
|
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
{{#if view.annotations}}
|
|
||||||
<div id="annotations">
|
|
||||||
{{#each view.annotations as |annotation|}}
|
|
||||||
<div class="annotation">
|
|
||||||
<a href={{annotation.url}}>
|
|
||||||
{{annotation.status}} {{annotation.providerName}}
|
|
||||||
</a>:
|
|
||||||
{{annotation.description}}
|
|
||||||
</div>
|
|
||||||
{{/each}}
|
|
||||||
</div>
|
|
||||||
{{/if}}
|
|
|
@ -4,10 +4,6 @@
|
||||||
|
|
||||||
{{build-header item=build user=auth.currentUser commit=commit repo=repo}}
|
{{build-header item=build user=auth.currentUser commit=commit repo=repo}}
|
||||||
|
|
||||||
{{#unless build.isMatrix}}
|
|
||||||
{{view 'annotations' annotations=build.jobs.firstObject.annotations}}
|
|
||||||
{{/unless}}
|
|
||||||
|
|
||||||
{{#if build.isMatrix}}
|
{{#if build.isMatrix}}
|
||||||
{{#if jobsLoaded}}
|
{{#if jobsLoaded}}
|
||||||
{{jobs-list jobs=build.requiredJobs repo=repo required="true"}}
|
{{jobs-list jobs=build.requiredJobs repo=repo required="true"}}
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
{{build-header item=job user=auth.currentUser commit=job.commit repo=repo}}
|
{{build-header item=job user=auth.currentUser commit=job.commit repo=repo}}
|
||||||
|
|
||||||
{{view 'annotations' annotations=view.annotations}}
|
|
||||||
|
|
||||||
{{job-log job=job}}
|
{{job-log job=job}}
|
||||||
|
|
||||||
{{else}}
|
{{else}}
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
`import BasicView from 'travis/views/basic'`
|
|
||||||
|
|
||||||
View = BasicView.extend
|
|
||||||
templateName: 'annotations/list'
|
|
||||||
|
|
||||||
`export default View`
|
|
|
@ -1,5 +0,0 @@
|
||||||
`import Ember from 'ember'`
|
|
||||||
|
|
||||||
View = Ember.View.extend()
|
|
||||||
|
|
||||||
`export default View`
|
|
|
@ -9,7 +9,6 @@ View = Ember.View.extend Polling,
|
||||||
repoBinding: 'controller.repo'
|
repoBinding: 'controller.repo'
|
||||||
jobBinding: 'controller.job'
|
jobBinding: 'controller.job'
|
||||||
commitBinding: 'job.commit'
|
commitBinding: 'job.commit'
|
||||||
annotationsBinding: 'job.annotations'
|
|
||||||
|
|
||||||
currentItemBinding: 'job'
|
currentItemBinding: 'job'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user