Changeset 2533870
- Timestamp:
- 05/18/2021 10:03:14 PM (5 years ago)
- Location:
- impact-partnership-cloud
- Files:
-
- 18 added
- 3 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/assets (added)
-
tags/1.0.2/assets/screenshot-1.png (added)
-
tags/1.0.2/assets/screenshot-2.png (added)
-
tags/1.0.2/css (added)
-
tags/1.0.2/css/css.css (added)
-
tags/1.0.2/css/impact.css (added)
-
tags/1.0.2/impact.php (added)
-
tags/1.0.2/includes (added)
-
tags/1.0.2/includes/utt-script.php (added)
-
tags/1.0.2/index.php (added)
-
tags/1.0.2/js (added)
-
tags/1.0.2/js/impact.js (added)
-
tags/1.0.2/js/scripts (added)
-
tags/1.0.2/js/scripts/impact-custom-script.js (added)
-
tags/1.0.2/js/scripts/impact-default-script.js (added)
-
tags/1.0.2/js/scripts/impact-utt-getclickid.js (added)
-
tags/1.0.2/readme.txt (added)
-
trunk/impact.php (modified) (1 diff)
-
trunk/js/impact.js (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
impact-partnership-cloud/trunk/impact.php
r2528007 r2533870 3 3 * Plugin Name: Impact: Partnership Cloud 4 4 * Description: Partnership cloud app plugin for Woocomerce that tracks every conversion made trough one of Impact's referral links. 5 * Version: 1.0. 15 * Version: 1.0.2 6 6 * Requires at least: 5.0 7 7 * Requires PHP: 7.0 -
impact-partnership-cloud/trunk/js/impact.js
r2523610 r2533870 1 1 jQuery(document).ready(function () { 2 var formEl = "form#new_integration_setting"; 3 2 4 jQuery(".impact-exist-user").click(function () { 3 5 jQuery(".impact-form").toggleClass("impact-hidden impact-unhidden"); … … 15 17 set_submit_button_status() 16 18 17 jQuery( "input[type='text']").change(function () {19 jQuery(formEl + " input[type='text']").change(function () { 18 20 set_submit_button_status(); 19 21 }); 20 22 21 23 function set_submit_button_status() { 24 var submitButtonEl = formEl + " input[type=submit]"; 22 25 if (should_submit_button_be_enabled()) { 23 jQuery( "input[type=submit]").prop("disabled", false);26 jQuery(submitButtonEl).prop("disabled", false); 24 27 } else { 25 jQuery( "input[type=submit]").prop("disabled", true);28 jQuery(submitButtonEl).prop("disabled", true); 26 29 } 27 30 } -
impact-partnership-cloud/trunk/readme.txt
r2528007 r2533870 4 4 Tested up to: 5.7 5 5 Requires PHP: 7.0 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 7 7 License: GPLv2 or later License 8 8 URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.