remove annotations

This commit is contained in:
Lisa P 2015-11-18 14:54:39 +01:00 committed by Piotr Sarnacki
parent 7eef434c67
commit 90675b1380
9 changed files with 0 additions and 49 deletions

View File

@ -6,7 +6,6 @@ Controller = Ember.Controller.extend
repoBinding: 'repoController.repo'
commitBinding: 'job.commit'
annotationsBinding: 'job.annotations'
currentUserBinding: 'auth.currentUser'
tabBinding: 'repoController.tab'

View File

@ -12,7 +12,6 @@
@import "app/forms";
@import "app/github";
@import "app/main/annotations";
@import "app/userlike";
@import "app/main/log";

View File

@ -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

View File

@ -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}}

View File

@ -4,10 +4,6 @@
{{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 jobsLoaded}}
{{jobs-list jobs=build.requiredJobs repo=repo required="true"}}

View File

@ -2,8 +2,6 @@
{{build-header item=job user=auth.currentUser commit=job.commit repo=repo}}
{{view 'annotations' annotations=view.annotations}}
{{job-log job=job}}
{{else}}

View File

@ -1,6 +0,0 @@
`import BasicView from 'travis/views/basic'`
View = BasicView.extend
templateName: 'annotations/list'
`export default View`

View File

@ -1,5 +0,0 @@
`import Ember from 'ember'`
View = Ember.View.extend()
`export default View`

View File

@ -9,7 +9,6 @@ View = Ember.View.extend Polling,
repoBinding: 'controller.repo'
jobBinding: 'controller.job'
commitBinding: 'job.commit'
annotationsBinding: 'job.annotations'
currentItemBinding: 'job'