';
} );
}
/**
* Not Installed
*
* List of not installed required plugins.
*/
if (
typeof required_plugins.notinstalled !== 'undefined'
) {
// Add not have installed plugins count.
remaining_plugins += parseInt(
required_plugins.notinstalled.length
);
$( required_plugins.notinstalled ).each( function (
index,
plugin
) {
if ( 'elementor' == plugin.slug ) {
return;
}
output +=
'
' +
plugin.name +
'
';
} );
}
/**
* Inactive
*
* List of not inactive required plugins.
*/
if (
typeof required_plugins.inactive !== 'undefined'
) {
// Add inactive plugins count.
remaining_plugins += parseInt(
required_plugins.inactive.length
);
$( required_plugins.inactive ).each( function (
index,
plugin
) {
if ( 'elementor' == plugin.slug ) {
return;
}
output +=
'
' +
plugin.name +
'
';
} );
}
/**
* Active
*
* List of not active required plugins.
*/
if ( typeof required_plugins.active !== 'undefined' ) {
$( required_plugins.active ).each( function (
index,
plugin
) {
if ( 'elementor' == plugin.slug ) {
return;
}
output +=
'
' +
plugin.name +
'
';
} );
}
if ( '' != output ) {
output =
'
' +
astraElementorSites.install_plugin_text +
'
' +
output;
$elscope
.find( '.required-plugins-list' )
.html( output );
$elscope
.find( '.ast-tooltip-wrap' )
.css( 'opacity', 1 );
$elscope
.find( '.astra-sites-tooltip' )
.css( 'opacity', 1 );
}
/**
* Enable Demo Import Button
* @type number
*/
AstraElementorSitesAdmin.requiredPlugins =
response.data[ 'required_plugins' ];
AstraElementorSitesAdmin[ 'initial-page-refresh' ] =
AstraElementorSitesAdmin[ 'requiredPlugins' ][
'notinstalled'
]?.length ||
AstraElementorSitesAdmin[ 'requiredPlugins' ][
'inactive'
]?.length
? true
: false;
if (
AstraElementorSitesAdmin[ 'initial-page-refresh' ]
) {
document.querySelectorAll(
'.astra-sites-import-template-action .ast-library-template-insert'
)[ 0 ].innerText =
'Install Required Plugins & Import';
}
AstraElementorSitesAdmin.canImport = true;
AstraElementorSitesAdmin.canInsert = true;
$elscope
.find( '.astra-sites-import-template-action > div' )
.removeClass( 'disabled' );
}
} );
},
removeAddedParams: function () {
const urlObj = new URL( window.location.href );
// Check if the query parameters exist
if (
urlObj.searchParams.has( 'remoteST' ) &&
urlObj.searchParams.has( 'blockID' )
) {
// Remove specific query parameters
urlObj.searchParams.delete( 'remoteST' );
urlObj.searchParams.delete( 'blockID' );
urlObj.searchParams.delete( 'type' );
// Update the URL in the browser
window.history.replaceState( {}, '', urlObj.href );
}
},
saveContentAndRefresh: function () {
const elementorPanel = document.querySelector( '.elementor-panel' ); // Get the Elementor panel element
if ( elementorPanel ) {
const updateButton = elementorPanel.querySelector(
'#elementor-panel-saver-button-publish'
); // Find the Elementor update button
if ( updateButton ) {
updateButton.click(); // Trigger a click event on the update button
let id =
'blocks' === AstraElementorSitesAdmin.type
? AstraElementorSitesAdmin.block_id?.replace(
'id-',
''
)
: AstraElementorSitesAdmin.page_id?.replace(
'id-',
''
);
if ( id ) {
AstraElementorSitesAdmin.updateURLParams( id );
window.location.reload(); // Refresh the page
}
}
}
},
updateURLParams: function ( block_id ) {
// Get the current URL
var url = new URL( window.location.href );
// Create a new URLSearchParams object from the URL's search params
var searchParams = new URLSearchParams( url.search );
let type = AstraElementorSitesAdmin.type;
// Add parameters to the searchParams object
searchParams.append( 'remoteST', 'true' );
searchParams.append( 'blockID', block_id );
searchParams.append( 'type', type );
// Update the search property of the URL object with the new search params
url.search = searchParams.toString();
// Get the modified URL
var modifiedUrl = url.toString();
// Update the browser's live URL
window.history.pushState( { path: modifiedUrl }, '', modifiedUrl );
},
_libraryClick: function ( e ) {
$elscope
.find( '.elementor-template-library-menu-item' )
.each( function () {
$( this ).removeClass( 'elementor-active' );
} );
$( this ).addClass( 'elementor-active' );
},
_loadLargeImage: function ( el ) {
if ( el.hasClass( 'loaded' ) ) {
return;
}
if ( el.parents( '.astra-theme' ).isInViewport() ) {
var large_img_url = el.data( 'src' ) || '';
var imgLarge = new Image();
imgLarge.src = large_img_url;
imgLarge.onload = function () {
el.removeClass( 'loading' );
el.addClass( 'loaded' );
el.css( 'background-image', "url('" + imgLarge.src + "'" );
};
}
},
_loadLargeImages: function () {
$elscope.find( '.theme-screenshot' ).each( function ( key, el ) {
AstraElementorSitesAdmin._loadLargeImage( $( el ) );
} );
},
_close: function ( e ) {
console.groupEnd( 'Process Done.' );
$( document ).trigger( 'astra-sites__elementor-close-before' );
setTimeout( function () {
$elscope.fadeOut();
$( 'body' ).removeClass( 'astra-sites__elementor-open' );
}, 300 );
$( document ).trigger( 'astra-sites__elementor-close-after' );
},
_open: function ( e ) {
$( document ).trigger( 'astra-sites__elementor-open-before' );
$( 'body' ).addClass( 'astra-sites__elementor-open' );
let add_section = $( this ).closest( '.elementor-add-section' );
if ( add_section.hasClass( 'elementor-add-section-inline' ) ) {
AstraElementorSitesAdmin.index = add_section.prevAll().length;
} else {
AstraElementorSitesAdmin.index = add_section
.prev()
.children().length;
}
AstraElementorSitesAdmin._home();
$elscope.fadeIn();
if ( $( '.refreshed-notice' ).length == 1 ) {
setTimeout( function () {
$( '.refreshed-notice' ).find( '.notice-dismiss' ).click();
}, 2500 );
}
$( document ).trigger( 'astra-sites__elementor-open-after' );
},
_beforeOpen: function ( e ) {
let userPrefersDark = matchMedia(
'(prefers-color-scheme: dark)'
).matches;
let uiTheme =
elementor.settings.editorPreferences.model.get( 'ui_theme' );
if (
'dark' === uiTheme ||
( 'auto' === uiTheme && userPrefersDark )
) {
$( 'body' ).addClass( 'ast-sites-dark-mode' );
} else {
$( 'body' ).removeClass( 'ast-sites-dark-mode' );
}
// Hide preview page.
$elscope.find( '.theme-preview' ).hide();
$elscope.find( '.theme-preview' ).html( '' );
// Show site listing page.
$elscope.find( '.dialog-lightbox-content' ).show();
// Hide Back button.
$elscope.find( '.back-to-layout' ).css( 'visibility', 'hidden' );
$elscope.find( '.back-to-layout' ).css( 'opacity', '0' );
},
_initSites: function ( e ) {
AstraElementorSitesAdmin._appendSites(
astraElementorSites.default_page_builder_sites
);
AstraElementorSitesAdmin._goBack();
},
_initBlocks: function ( e ) {
AstraElementorSitesAdmin._appendBlocks(
astraElementorSites.astra_blocks
);
AstraElementorSitesAdmin._goBack();
},
/**
* Install Success
*/
_installSuccess: function ( event, response ) {
event.preventDefault();
// Transform the 'Install' button into an 'Activate' button.
var $init = $( '.plugin-card-' + response.slug ).data( 'init' );
var $name = $( '.plugin-card-' + response.slug ).data( 'name' );
// Reset not installed plugins list.
var pluginsList =
AstraElementorSitesAdmin.requiredPlugins.notinstalled;
var curr_plugin = AstraElementorSitesAdmin._getPluginFromQueue(
response.slug,
pluginsList
);
AstraElementorSitesAdmin.requiredPlugins.notinstalled =
AstraElementorSitesAdmin._removePluginFromQueue(
response.slug,
pluginsList
);
// WordPress adds "Activate" button after waiting for 1000ms. So we will run our activation after that.
setTimeout( function () {
console.log( 'Activating Plugin - ' + curr_plugin.name );
$.ajax( {
url: astraElementorSites.ajaxurl,
type: 'POST',
data: {
action: 'astra-sites-required_plugin_activate',
init: curr_plugin.init,
_ajax_nonce: astraElementorSites._ajax_nonce,
},
} ).done( function ( result ) {
if ( result.success ) {
var pluginsList =
AstraElementorSitesAdmin.requiredPlugins.inactive;
console.log( 'Activated Plugin - ' + curr_plugin.name );
// Reset not installed plugins list.
AstraElementorSitesAdmin.requiredPlugins.inactive =
AstraElementorSitesAdmin._removePluginFromQueue(
response.slug,
pluginsList
);
// Enable Demo Import Button
AstraElementorSitesAdmin._enableImport();
}
} );
}, 1200 );
},
/**
* Plugin Installation Error.
*/
_installError: function ( event, response ) {
console.log( response );
console.log( 'Error Installing Plugin - ' + response.slug );
console.log( response.errorMessage );
},
/**
* Installing Plugin
*/
_pluginInstalling: function ( event, args ) {
console.log( 'Installing Plugin - ' + args.slug );
},
};
/**
* Initialize AstraElementorSitesAdmin
*/
$( function () {
AstraElementorSitesAdmin.init();
} );
} )( jQuery );
import{r as s,h as e}from"./p-e97fde0a.js";const t=":host{display:inline-block}";const i=t;const o={open:wp.i18n.__("Return in progress","surecart"),completed:wp.i18n.__("Returned","surecart")};const n={open:"warning",completed:"success"};const r=class{constructor(e){s(this,e);this.status=undefined;this.size="medium";this.pill=false;this.clearable=false}render(){return e("sc-tag",{key:"bae24922b7ee77d821455a17d4b66e4afc596bc2",type:n===null||n===void 0?void 0:n[this===null||this===void 0?void 0:this.status],pill:this.pill},(o===null||o===void 0?void 0:o[this.status])||this.status)}};r.style=i;export{r as sc_order_return_badge};
//# sourceMappingURL=p-c0a24abc.entry.js.map
Infuse Fashionhttps://validator.w3.org/feed/docs/rss2.htmlHome PageEmbrace the Cluck & Cash A Guide to Winning Big on Chicken Road Adventures.Feuerprobe für Glückspilze Kannst du mit Chicken Road den kniffligen Parcours meistern, dein goldeneFedernstaub und Nervenkitzel Navigiere deine Henne sicher durch Chicken Road, meistere vier anspruchEmbrace the Challenge Guide Your Hen to Riches with a 98% RTP in the chicken road apk Solo Quest.Embark on a Feathered Adventure Navigate Peril & Riches in the Chicken Road casino—Boasting 98% RTP!Embrace the Challenge Conquer Difficulty Levels & Win Big with the chicken road gambling game – A 98Elevate Your Play Strategic Insights & the Aviator predictor for Soaring Wins.Elevate Your Gameplay Soar to Potential Wins and Calculated Risks with the aviator game.Százszor jobb nyerési esélyekkel a hot slot casino játékok várnak, ahol a szerencse és a stratégia pEmbrace the Chaos – Test Your Nerve & Skill on Chicken Road for Potential Rewards.Przestań szukać, graj od razu – czy betonred to klucz do Twojego szczęścia w świecie wirtualnych hazVsaďte na štěstí a s každým krokem navyšujte výhru – Chicken Road, hra, kde odvaha a rychlá reakce rGlücksfeder im Handheld Chicken Road Erfahrungen und wie du dein Können zum Profit machen kannst.Geflügelte Spannung Chicken Road seriös getestet – Dein Weg zum sicheren Online-Casino-ErlebnisEmbrace the Cluck & Cash A Guide to Winning Big on Chicken Road Adventures.Elevate Your Game Instant Access to Thrilling Sports & Casino Action with a freshbet login.Aventură și risc testează acum demo-ul Chicken Road și maximizează-ți șansele de câștig!Špičková zábava s automaty a stolními hrami čeká v online kasinu vincispin, kde na vás nemyslí jen šLuftfahrt-Enthusiasmus erlebt neue Höhen mit Avia Masters – Virtuelle Wettbewerbe für Piloten und FaFeuern Sie Ihre Gewinnchancen an Mit Chicken Road zu fantastischen Auszahlungen und Nervenkitzel!L’aventure avicole pleine de suspense maximisez vos gains avant que le piège ne se referme sur ChicCascading Rewards Await Master the Art of plinko game online and Maximize Your Payouts.Verde casino online n Romnia experien utilizator.362Verde casino online n Romnia experien utilizator.719Dare to Cash Out Before the Fall in Chicken Road game_2Aumenta tu adrenalina ¿estás listo para experimentar la siguiente generación de apuestas y diversiónEmbrace the Thrill Conquer the chicken road game with Calculated Risks & Timely Withdrawals.Pin Up Casino Onlayn Azrbaycan.6403 (3)Golden Opportunities Await Elevate Your Gameplay with Yukon Gold Casino Canada’s Exclusive Rewards &Yüksək Mərc, Böyük Qazanclar Pinco Azərbaycan platformasında canlı oyunların, idman mərcələrinin dünYüksək Mərc, Böyük Qazanclar Pinco Azərbaycan platformasında canlı oyunların, idman mərcələrinin dünŞansın sınağı bu platformdadır pinco az ilə kazinonun ən yaxşı oyunları sizi gözləyir!Ощутите прилив удачи casino x открывает двери к захватывающим победам и выгодным бонусам для каждогоL’effervescence du jeu à portée de clic vegasino, votre destination privilégiée pour une expérienceL’excitation du jeu à portée de clic vegasino casino, votre destination pour des sensations fortesL’Éclat Virtuel Plus de 500 Jeux de Casino Attendent sur vegasino, Pour des Sensations Fortes GaranÉrezd a szerencse izgalmát 40 nyerővonalon pörgethetsz a hotslots 40-nel, és hatalmas nyereményekkelСекреты выигрышных стратегий и захватывающие развлечения в рокс казино ждут тебя прямо сейчас.Секреты выигрышей раскрыты rox casino — ваш путь к захватывающим азартным играм и невероятным призамЭлектронные азартные игры стратегия выигрыша с flagman casino и безопасностью данныхЭлектронные азартные игры стратегия выигрыша с flagman casino и безопасностью данныхElevate Your Play Secure Wins & Thrilling Games Await with glory casino pakistan._2¿Arriesgarás tu fortuna guiando a una gallina por el impredecible camino de chicken road, o sabrás cPrepare-se para a Emoção Domine a Chicken Road e Transforme Cada Passo em uma Recompensa Incrível!Fortuna a cascata vinci premi inaspettati con lapp plinko e impara a sfidare la sorte.Arkada онлайн казино как пополнить баланс и внести депозит.1800Deneme Bonusu Veren Siteler 2025 – Gvenilir En iyi Casino Siteler.374Pinco Казино – Официальный сайт Пинко вход на зеркало.3374 (2)Blog