mirror of
https://github.com/a2nt/webpack-bootstrap-ui-kit.git
synced 2024-10-22 11:05:45 +02:00
FIX: ui.multislider
This commit is contained in:
parent
6f7816349f
commit
1444b797cf
@ -213,7 +213,7 @@ const MultiSlider = (($) => {
|
||||
};
|
||||
|
||||
// auto-apply
|
||||
$(W).on(`${Events.AJAX} ${Events.LOADED}`, () => {
|
||||
$(W).on(Events.LODEDANDREADY, () => {
|
||||
console.log(`Initializing: ${NAME}`);
|
||||
|
||||
$(`.${NAME}`).jsMultiSlider();
|
||||
|
@ -15,7 +15,7 @@ import FormBasics from './_components/_ui.form.basics';
|
||||
import SmoothScroll from 'smooth-scroll';
|
||||
const smoothScroll = SmoothScroll();
|
||||
|
||||
const MainUI = (($) => {
|
||||
const MainUI = ($ => {
|
||||
// Constants
|
||||
const W = window;
|
||||
const D = document;
|
||||
@ -174,7 +174,7 @@ const MainUI = (($) => {
|
||||
//
|
||||
|
||||
// scroll links
|
||||
$('.js-scrollTo').on('click', (e) => {
|
||||
$('.js-scrollTo').on('click', e => {
|
||||
e.preventDefault();
|
||||
const el = e.currentTarget;
|
||||
const $el = $(e.currentTarget);
|
||||
@ -203,7 +203,7 @@ const MainUI = (($) => {
|
||||
}
|
||||
|
||||
// data-set links
|
||||
$('[data-set-target]').on('click', (e) => {
|
||||
$('[data-set-target]').on('click', e => {
|
||||
const $el = $(e.currentTarget);
|
||||
const $target = $($el.data('set-target'));
|
||||
|
||||
@ -227,7 +227,7 @@ const MainUI = (($) => {
|
||||
});
|
||||
|
||||
// emulate links
|
||||
$('.a[data-href]').on('click', (e) => {
|
||||
$('.a[data-href]').on('click', e => {
|
||||
const $el = $(e.currentTarget);
|
||||
const href = $el.data('href');
|
||||
if (!href.length) {
|
||||
@ -382,7 +382,9 @@ const MainUI = (($) => {
|
||||
AjaxUI.preload($imgLazyUrls).then(() => {
|
||||
console.log('All images are loaded!');
|
||||
|
||||
setTimeout(() => {
|
||||
$(W).trigger(`${Events.LAZYIMAGESREADY}`);
|
||||
}, 100);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -2,6 +2,8 @@
|
||||
$grid-gutter-element-height: 2rem !default;
|
||||
|
||||
.jsMultiSlider {
|
||||
position: relative;
|
||||
display: flex;
|
||||
margin-bottom: $grid-gutter-element-height/2;
|
||||
|
||||
&-active {
|
||||
|
Loading…
Reference in New Issue
Block a user