remove events file

This commit is contained in:
Lisa P 2015-11-18 16:14:16 +01:00 committed by Piotr Sarnacki
parent fc0aefb42c
commit 79c8e97f51
3 changed files with 0 additions and 42 deletions

View File

@ -23,10 +23,6 @@ RepoShowTabsComponent = Ember.Component.extend
'active' if @get('tab') == 'branches'
).property('tab')
classEvents: (->
'active' if @get('tab') == 'events'
).property('tab')
classBuild: (->
tab = @get('tab')
classes = []

View File

@ -1,34 +0,0 @@
{{#if view.events.isLoaded}}
<table id="events" class="list">
<thead>
<tr>
<th>Time</th>
<th>Event</th>
<th>Result</th>
<th>Message</th>
</tr>
</thead>
<tbody>
{{#each view.events as |event|}}
{{#view "events-item" context="event"}}
<td class="created_at">
{{format-time createdAt}}
</td>
<td class="event">
{{event.event_}}
</td>
<td class="state">
{{event.state}}
</td>
<td class="message">
{{event.message}}
</td>
{{/view}}
{{/each}}
</tbody>
</table>
{{else}}
{{loading-indicator}}
{{/if}}

View File

@ -23,10 +23,6 @@ View = Ember.View.extend
'active' if @get('tab') == 'branches'
).property('tab')
classEvents: (->
'active' if @get('tab') == 'events'
).property('tab')
classBuild: (->
tab = @get('tab')
classes = []