Changeset 3400173
- Timestamp:
- 11/21/2025 05:12:10 AM (4 months ago)
- Location:
- accessibility-assistant/trunk
- Files:
-
- 3 edited
-
accessibility_assistant.php (modified) (1 diff)
-
admin/plan-list.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
accessibility-assistant/trunk/accessibility_assistant.php
r3399749 r3400173 5 5 Description: ADA, EAA, AODA & WCAG Compliance Widget for Website Accessibility 6 6 Author: CartCoder 7 Version: 4.0. 87 Version: 4.0.9 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
accessibility-assistant/trunk/admin/plan-list.php
r3399749 r3400173 114 114 115 115 plans.forEach(planId => { 116 const selector = `#paypal-button-container-${planId}`; 117 const container = document.querySelector(selector); 118 119 // FIX: Skip if HTML container does not exist yet 120 if (!container) { 121 //console.warn("PayPal container not found, skipping:", selector); 122 return; 123 } 124 116 125 paypal.Buttons({ 117 126 style: { … … 133 142 return handleSubscriptionApproval(planId, data.subscriptionID); 134 143 } 135 }).render( `#paypal-button-container-${planId}`);144 }).render(selector); 136 145 }); 137 146 }); -
accessibility-assistant/trunk/readme.txt
r3399749 r3400173 331 331 * Resolved bugs related languages ranking 332 332 333 = 4.0.9 = 334 * Resolved bugs related plans button 335 333 336 **Explore More Accessibility Options:** 334 337 [Accessibility Assistant Website](https://accessibilityassistant.com/)
Note: See TracChangeset
for help on using the changeset viewer.