PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.24
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.24
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / js / admin / addons.js

addons.js in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.24, at js/admin/addons.js

23 lines 571 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Add-Ons Page Script.
3 *
4 * Script for handling addon interactions on the Add-Ons page.
5 */
6
7 wp.domReady( () => {
8 /**
9 * Internal dependencies
10 */
11 const { toggleAddonState } = window.frmAdminBuild;
12
13 document.addEventListener( 'click', event => {
14 if ( event.target.matches( '.frm-uninstall-addon' ) ) {
15 event.preventDefault();
16 toggleAddonState( event.target, 'frm_uninstall_addon' );
17 } else if ( event.target.matches( '.frm-deactivate-addon' ) ) {
18 event.preventDefault();
19 toggleAddonState( event.target, 'frm_deactivate_addon' );
20 }
21 } );
22 } );
23