Files
P42_UI/app/controllers/common/myProfileController.js
T
2025-08-27 07:03:09 +00:00

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