decide.nolog.cz/app/routes/poll/evaluation.js
jelhan bb160cc503
refactor participants table (#164)
- Drops floatthead and additional scrollbar
- Makes header and first column sticky
- Refactors code for readability

Sticky header is only working in Firefox. Chrome and Edge does not support `position: sticky` for `<thead>`. Haven't tested Safari.
2019-04-20 23:29:59 +02:00

7 lines
127 B
JavaScript

import Route from '@ember/routing/route';
export default Route.extend({
model() {
return this.modelFor('poll');
}
});