web-apps/apps/common/mobile/lib/view/PopoverPanel.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

18 lines
395 B
JavaScript

Ext.define('Common.view.PopoverPanel', {
extend: 'Ext.Panel',
alias: 'widget.commonpopoverpanel',
config: {
showAnimation : {
type : 'fadeIn',
duration: 100
},
hideAnimation : {
type : 'fadeOut',
duration: 100
},
modal : {
cls : 'transparent'
}
}
});