Critics have remarked that those four worthies were truly peerless throughout the ages; yet the present falls short of the pastβ€”the ancients favored unadorned simplicity, whereas the moderns prefer refined elegance. Styles of substance and ornament rise and fall in succession, shifting with the changing mores of the times; such evolution is simply the natural order of things. The ideal lies in honoring antiquity without clashing with the present, and embracing modernity without succumbing to its flawsβ€”embodying that perfect balance of substance and refinement that defines the true gentleman. There is surely no need to abandon a carved palace in favor of a cave dwelling, or to trade a jade carriage for a primitive cart with solid wooden wheels.🌌 SpectraShell

🌌 SpectraShell

Current path: home/u461622454/domains/wordfairy.ai/public_html/public/js/



βœ… Cloned to:


⬆️ Go up: /home/u461622454/domains/wordfairy.ai/public_html/public

πŸ“„ Viewing: upgrade.js


/*************************************************
 *  Process File Synthesize Mode
 *************************************************/
$('#upgrade').on('click',function(e) {

    "use strict";

    e.preventDefault()

    let checkbox = document.getElementById("concent");
    
    if(checkbox.checked) {

        $.ajax({
            headers: {
                'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
            },
            type: "POST",
            url: $('#upgrade-form').attr('action'),
            beforeSend: function() {
                $('#upgrade').html('');
                $('#upgrade').prop('disabled', true);
                $('#processing').show().clone().appendTo('#upgrade');  
                $('#processing').hide();         
            },
            complete: function() {
                $('#upgrade').prop('disabled', false);
                $('#processing', '#upgrade').empty().remove();
                $('#processing').hide();
                $('#upgrade').html('Check New Version');            
            },
            success: function(data) {           
                if(data) {
                    let notInstalled = document.getElementById('not-installed-info');
                    let installed = document.getElementById('installed-info');
                    
                    if(notInstalled) {
                        document.getElementById('not-installed-info').style.display = 'none';
                    }
                    
                    if (installed) {
                        document.getElementById('installed-info').style.display = 'block';
                        toastr.success('Update has been installed successfully');
                    } 
                }
            },
            error: function(data) {
                $('#upgrade').prop('disabled', false);
                $('#processing').remove();
                $('#upgrade').html('Download & Install Upgrade');            
            }
        }).done(function(data) {})
    
    } else {
        toastr.warning('Make sure to read the checkbox information first and agree on it before updating');
    }
});




  
 


πŸ“

Redirecting to https://www.wordfairy.ai/public Redirecting to https://www.wordfairy.ai/public.