mirror of
https://github.com/a2nt/webpack-bootstrap-ui-kit.git
synced 2024-10-22 11:05:45 +02:00
UI debug details
This commit is contained in:
parent
513a5f1774
commit
1f15be7009
@ -6,15 +6,7 @@ import MAP_DRIVER from './_components/drivers/_map.google';
|
||||
//import MAP_DRIVER from './_components/drivers/_map.mapbox';
|
||||
|
||||
const CONSTS = {
|
||||
ENVS: [
|
||||
'xs',
|
||||
'sm',
|
||||
'md',
|
||||
'lg',
|
||||
'xl',
|
||||
'xxl',
|
||||
'xxxl',
|
||||
],
|
||||
ENVS: ['xs', 'sm', 'md', 'lg', 'xl', 'xxl', 'xxxl'],
|
||||
MAP_DRIVER,
|
||||
};
|
||||
|
||||
|
@ -365,7 +365,10 @@ const MainUI = (($) => {
|
||||
});
|
||||
}
|
||||
|
||||
if ($AlertNotify.length && typeof $AlertNotify[0].stop !== 'undefined') {
|
||||
if (
|
||||
$AlertNotify.length &&
|
||||
typeof $AlertNotify[0].stop !== 'undefined'
|
||||
) {
|
||||
$AlertNotify[0].stop();
|
||||
}
|
||||
|
||||
@ -464,6 +467,24 @@ const MainUI = (($) => {
|
||||
});
|
||||
}, 1000);
|
||||
});
|
||||
|
||||
console.clear();
|
||||
console.info(
|
||||
'%cUI Kit: https://github.com/a2nt/webpack-bootstrap-ui-kit by Tony Air (tony@twma.pro)',
|
||||
'color:yellow;font-size:16px',
|
||||
);
|
||||
console.groupCollapsed('Events');
|
||||
Object.keys(Events).forEach((k) => {
|
||||
console.info(k + ': ' + Events[k]);
|
||||
});
|
||||
console.groupEnd('Events');
|
||||
|
||||
console.groupCollapsed('Consts');
|
||||
Object.keys(Consts).forEach((k) => {
|
||||
console.info(k + ': ' + Consts[k]);
|
||||
});
|
||||
console.groupEnd('Events');
|
||||
|
||||
W.MainUI = MainUI;
|
||||
|
||||
return MainUI;
|
||||
|
Loading…
Reference in New Issue
Block a user