decide.nolog.cz/app/views/poll.js

9 lines
213 B
JavaScript
Raw Normal View History

2014-08-03 17:12:42 +02:00
export default Ember.View.extend({
didInsertElement : function(){
this._super();
Ember.run.scheduleOnce('afterRender', this, function(){
2014-08-03 17:19:11 +02:00
$('.user-selections-table').floatThead({});
2014-08-03 17:12:42 +02:00
});
}
});