/* global amadeusCustomizerObject */
/*
Upsells
*/
jQuery(document).ready(function() {
/* Upsells in customizer (Documentation link and Upgrade to PRO link */
if( !jQuery( '.amadeus-upsells' ).length ) {
jQuery('#customize-theme-controls > ul').prepend('
');
}
if( jQuery( '.amadeus-upsells' ).length ) {
jQuery('.amadeus-upsells').append('{documentation}'.replace('{documentation}', amadeusCustomizerObject.documentation));
}
if ( !jQuery( '.amadeus-upsells' ).length ) {
jQuery('#customize-theme-controls > ul').prepend('');
}
jQuery('.preview-notice').append('{pro}'.replace('{pro}',amadeusCustomizerObject.pro));
//Locked sections
jQuery('#accordion-section-amadeus_extra_options').click(function() {
jQuery('.wp-full-overlay').removeClass('section-open');
jQuery('accordion-section-amadeus_extra_options').removeClass('open');
window.location.href = "http://themeisle.com/themes/amadeus-pro/";
});
});