Remove ordered-filtered-table component idea that has not produced a working example
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
import Ember from 'ember'
|
||||
import layout from '../templates/components/ordered-filtered-table'
|
||||
|
||||
export default Ember.Component.extend
|
||||
layout: layout
|
||||
tagName: 'table'
|
||||
classNames: ['ui', 'compact', 'table']
|
||||
test_name: 'Oooo'
|
||||
@@ -1,24 +0,0 @@
|
||||
<thead>
|
||||
<tr>
|
||||
{{#each properties as |p|}}
|
||||
{{p.header}}
|
||||
{{/each}}
|
||||
</tr>
|
||||
<tr>
|
||||
{{#each properties as |p|}}
|
||||
{{p.filter}}
|
||||
{{/each}}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each content as |record|}}
|
||||
<tr>
|
||||
{{#each properties as |p|}}
|
||||
{{p.display record=record}}
|
||||
{{/each}}
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
{{yield (hash
|
||||
property=(component "ordered-filtered-table/property" table=self)
|
||||
)}}
|
||||
@@ -1 +0,0 @@
|
||||
= yield
|
||||
Reference in New Issue
Block a user