Форк Rambox
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
564 B

Ext.define('ExtThemeNeptune.panel.Panel', {
override: 'Ext.panel.Panel',
border: false,
bodyBorder: false,
initBorderProps: Ext.emptyFn,
initBodyBorder: function() {
// The superclass method converts a truthy bodyBorder into a number and sets
// an inline border-width style on the body element. This prevents that from
// happening if borderBody === true so that the body will get its border-width
// the stylesheet.
if (this.bodyBorder !== true) {
this.callParent();
}
}
});