mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
14 lines
383 B
JavaScript
14 lines
383 B
JavaScript
{
|
|
initComponent: function(){
|
|
// calling superclass's initComponent
|
|
this.callParent();
|
|
this.getComponent('user_stats').updateStats();
|
|
|
|
var store = this.getComponent('user_logs').getStore()
|
|
store.on('load', function (store, records, operation, success){
|
|
console.log("Bitches");
|
|
this.getComponent('user_stats').updateStats();
|
|
}, this);
|
|
}
|
|
}
|