extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
36 lines (28 loc) • 827 B
JavaScript
Ext.define('Admin.view.profile.UserProfile', {
extend: 'Admin.view.profile.UserProfileBase',
xtype: 'profile',
cls: 'userProfile-container dashboard',
scrollable: 'y',
items: [
{
xtype: 'profileshare',
userCls: 'big-100 small-100 dashboard-item shadow'
},
{
xtype: 'profilesocial',
userCls: 'big-50 small-100 dashboard-item shadow'
},
{
xtype: 'profiledescription',
userCls: 'big-50 small-100 dashboard-item shadow'
},
{
xtype: 'profilenotifications',
userCls: 'big-50 small-100 dashboard-item shadow'
},
{
xtype: 'profiletimeline',
userCls: 'big-50 small-100 dashboard-item shadow'
}
]
});