hangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegram
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.
18 lines
564 B
18 lines
564 B
9 years ago
|
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();
|
||
|
}
|
||
|
}
|
||
|
});
|