16 lines
350 B
JavaScript
16 lines
350 B
JavaScript
var configs = {
|
|
classNames: {
|
|
inset: 'Inset',
|
|
nolistview: 'NoListview',
|
|
nopanel: 'NoPanel',
|
|
panel: 'Panel',
|
|
selected: 'Selected',
|
|
vertical: 'Vertical'
|
|
},
|
|
language: null,
|
|
openingInterval: 25,
|
|
panelNodetype: ['ul', 'ol', 'div'],
|
|
transitionDuration: 400
|
|
};
|
|
export default configs;
|