remove events file
This commit is contained in:
parent
fc0aefb42c
commit
79c8e97f51
|
@ -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 = []
|
||||
|
|
|
@ -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}}
|
||||
|
|
@ -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 = []
|
||||
|
|
Loading…
Reference in New Issue
Block a user