12 lines
301 B
JavaScript
12 lines
301 B
JavaScript
class myProfileController extends EICController {
|
|
|
|
index(routeInfo){
|
|
this.loadWindow('common/profile/myProfileView', {
|
|
title: 'My Profile',
|
|
static: true,
|
|
expanded: true
|
|
});
|
|
}
|
|
}
|
|
|
|
app.registerClass('myProfileController', myProfileController); |