IntelliJ IDEA
- 1 ответ
- 0 вопросов
1
Вклад в тег
simbo.onhh.ru/wp-content/plugins/jet-engine/assets...
( function( $ ) {
"use strict";
var JetEngine = {
init: function() {
var widgets = {
'jet-listing-dynamic-field.default' : JetEngine.widgetDynamicField
};
$.each( widgets, function( widget, callback ) {
window.elementorFrontend.hooks.addAction( 'frontend/element_ready/' + widget, callback );
});
},
widgetDynamicField: function( $scope ) {
var $slider = $scope.find( '.jet-engine-gallery-slider' );
if ( $slider.length ) {
$slider.slick( $slider.data( 'atts' ) );
}
},
};
$( window ).on( 'elementor/frontend/init', JetEngine.init );
}( jQuery ) );
prevArrow
string (html|jQuery selector) | object (DOM node|jQuery object)
Previous
Allows you to select a node or customize the HTML for the "Previous" arrow.
nextArrow
string (html|jQuery selector) | object (DOM node|jQuery object)
Next
Allows you to select a node or customize the HTML for the "Next" arrow.