Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-conte.../plugins/wpforms-.../assets/js/admin
File: form-embed-wizard.js
el.$sectionGo.hide();
[500] Fix | Delete
}
[501] Fix | Delete
el.$newPageTitle.show();
[502] Fix | Delete
el.$selectPageContainer.show();
[503] Fix | Delete
[504] Fix | Delete
el.$wizardContainer.fadeIn();
[505] Fix | Delete
},
[506] Fix | Delete
[507] Fix | Delete
/**
[508] Fix | Delete
* Close wizard popup.
[509] Fix | Delete
*
[510] Fix | Delete
* @since 1.6.2
[511] Fix | Delete
*/
[512] Fix | Delete
closePopup: function() {
[513] Fix | Delete
[514] Fix | Delete
el.$wizardContainer.fadeOut();
[515] Fix | Delete
app.initialStateToggle();
[516] Fix | Delete
[517] Fix | Delete
$( document ).trigger( 'wpformsWizardPopupClose' );
[518] Fix | Delete
},
[519] Fix | Delete
[520] Fix | Delete
/**
[521] Fix | Delete
* Init embed page tooltip.
[522] Fix | Delete
*
[523] Fix | Delete
* @since 1.6.2
[524] Fix | Delete
*/
[525] Fix | Delete
initTooltip: function() {
[526] Fix | Delete
[527] Fix | Delete
if ( typeof $.fn.tooltipster === 'undefined' ) {
[528] Fix | Delete
return;
[529] Fix | Delete
}
[530] Fix | Delete
[531] Fix | Delete
var $dot = $( '<span class="wpforms-admin-form-embed-wizard-dot">&nbsp;</span>' ),
[532] Fix | Delete
isGutenberg = app.isGutenberg(),
[533] Fix | Delete
anchor = isGutenberg ? '.block-editor .edit-post-header' : '#wp-content-editor-tools .wpforms-insert-form-button';
[534] Fix | Delete
[535] Fix | Delete
var tooltipsterArgs = {
[536] Fix | Delete
content : $( '#wpforms-admin-form-embed-wizard-tooltip-content' ),
[537] Fix | Delete
trigger : 'custom',
[538] Fix | Delete
interactive : true,
[539] Fix | Delete
animationDuration: 0,
[540] Fix | Delete
delay : 0,
[541] Fix | Delete
theme : [ 'tooltipster-default', 'wpforms-admin-form-embed-wizard' ],
[542] Fix | Delete
side : isGutenberg ? 'bottom' : 'right',
[543] Fix | Delete
distance : 3,
[544] Fix | Delete
functionReady : function( instance, helper ) {
[545] Fix | Delete
[546] Fix | Delete
instance._$tooltip.on( 'click', 'button', function() {
[547] Fix | Delete
[548] Fix | Delete
instance.close();
[549] Fix | Delete
$( '.wpforms-admin-form-embed-wizard-dot' ).remove();
[550] Fix | Delete
} );
[551] Fix | Delete
[552] Fix | Delete
instance.reposition();
[553] Fix | Delete
},
[554] Fix | Delete
};
[555] Fix | Delete
[556] Fix | Delete
if ( ! isGutenberg ) {
[557] Fix | Delete
$dot.insertAfter( anchor ).tooltipster( tooltipsterArgs ).tooltipster( 'open' );
[558] Fix | Delete
}
[559] Fix | Delete
[560] Fix | Delete
// The Gutenberg header can be loaded after the window load event.
[561] Fix | Delete
// We have to wait until the Gutenberg heading is added to the DOM.
[562] Fix | Delete
const closeAnchorListener = wp.data.subscribe( function() {
[563] Fix | Delete
[564] Fix | Delete
if ( ! $( anchor ).length ) {
[565] Fix | Delete
return;
[566] Fix | Delete
}
[567] Fix | Delete
[568] Fix | Delete
// Close the listener to avoid an infinite loop.
[569] Fix | Delete
closeAnchorListener();
[570] Fix | Delete
[571] Fix | Delete
$dot.insertAfter( anchor ).tooltipster( tooltipsterArgs ).tooltipster( 'open' );
[572] Fix | Delete
} );
[573] Fix | Delete
},
[574] Fix | Delete
[575] Fix | Delete
/**
[576] Fix | Delete
* Check if we're in Gutenberg editor.
[577] Fix | Delete
*
[578] Fix | Delete
* @since 1.6.2
[579] Fix | Delete
*
[580] Fix | Delete
* @returns {boolean} Is Gutenberg or not.
[581] Fix | Delete
*/
[582] Fix | Delete
isGutenberg: function() {
[583] Fix | Delete
[584] Fix | Delete
return typeof wp !== 'undefined' && Object.prototype.hasOwnProperty.call( wp, 'blocks' );
[585] Fix | Delete
},
[586] Fix | Delete
};
[587] Fix | Delete
[588] Fix | Delete
// Provide access to public functions/properties.
[589] Fix | Delete
return app;
[590] Fix | Delete
[591] Fix | Delete
}( document, window, jQuery ) );
[592] Fix | Delete
[593] Fix | Delete
// Initialize.
[594] Fix | Delete
WPFormsFormEmbedWizard.init();
[595] Fix | Delete
[596] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function