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
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|