Changeset 3145953
- Timestamp:
- 09/03/2024 12:48:46 PM (17 months ago)
- Location:
- open-rdw-kenteken-voertuiginformatie/trunk
- Files:
-
- 5 edited
-
app/Services/ContactForm7.php (modified) (1 diff)
-
config/plugin.php (modified) (1 diff)
-
plugin-gratis-open-rdw-kenteken-voertuiginformatie.php (modified) (2 diffs)
-
public/js/open-rdw-kenteken-voertuiginformatie-public.js (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
open-rdw-kenteken-voertuiginformatie/trunk/app/Services/ContactForm7.php
r3145910 r3145953 71 71 } 72 72 73 $atts['class'] = $tag->get_class_option(!empty($class) ? $class : null) . 'open-data-rdw-hook';73 $atts['class'] = 'open-data-rdw-hook'; 74 74 $atts['id'] = 'open-data-rdw'; 75 75 -
open-rdw-kenteken-voertuiginformatie/trunk/config/plugin.php
r3145910 r3145953 27 27 'log_source' => 'tussendoor-rdw', 28 28 'log_context' => 'tsdRdwContext', 29 'version' => '5.1.0 ',29 'version' => '5.1.0.1', 30 30 'php_minimum' => '8.0', 31 31 'php_minimum_id' => 80000, -
open-rdw-kenteken-voertuiginformatie/trunk/plugin-gratis-open-rdw-kenteken-voertuiginformatie.php
r3145910 r3145953 12 12 * Author URI: https://www.tussendoor.nl 13 13 * Text Domain: tussendoor-rdw 14 * Version: 5.1.0 14 * Version: 5.1.0.1 15 15 * Tested up to: 6.6.1 16 16 * Requires at least: 6.2 … … 28 28 define('ORK_PLUGIN_PATH', plugins_url('tussendoor-rdw')); 29 29 define('ORK_PLUGIN', __DIR__); 30 define('ORK_VERSION', '5.1.0 ');30 define('ORK_VERSION', '5.1.0.1'); 31 31 32 32 /** -
open-rdw-kenteken-voertuiginformatie/trunk/public/js/open-rdw-kenteken-voertuiginformatie-public.js
r3145910 r3145953 53 53 * This code is responsible for contact form 7 support and makes an ajax call to our plugin. 54 54 */ 55 $(document).on('change', ' #open-data-rdw', function () {55 $(document).on('change', '.open-data-rdw-hook', function () { 56 56 var formID = $(this).closest('form').attr('id'); 57 57 58 if (formID == undefined) { 58 59 var inputID = $(this).attr('id'); … … 61 62 formID = inputID; 62 63 } 64 console.log(formID); 63 65 64 66 $('#' + formID + ' #open_rdw-loading').show(); … … 68 70 var kenteken = normalizeLicense($(this).val()); 69 71 var data = { action: 'get_open_rdw_data', kenteken: kenteken }; 72 73 console.log($(this)); 70 74 71 75 $(document).trigger('openrdw:before_data_load', kenteken); -
open-rdw-kenteken-voertuiginformatie/trunk/readme.txt
r3145910 r3145953 2 2 Contributors: Tussendoor 3 3 Tags: tussendoor, rdw, kenteken, voertuig, kentekeninformatie 4 Stable tag: 5.1.0 4 Stable tag: 5.1.0.1 5 5 Tested up to: 6.6.1 6 6 Requires at least: 6.2 … … 44 44 45 45 ### Changelog 46 47 ##### 5.1.0.1 48 * Hotfix: Recurring requests without a page refresh failed with CF7. 46 49 47 50 ##### 5.1.0
Note: See TracChangeset
for help on using the changeset viewer.