Changeset 3253473
- Timestamp:
- 03/10/2025 04:12:39 PM (12 months ago)
- Location:
- codemonkeys-hipaa-forms/trunk
- Files:
-
- 8 edited
-
admin-enqueue.php (modified) (1 diff)
-
css/admin-style.css (modified) (1 diff)
-
css/style.css (modified) (1 diff)
-
enqueue.php (modified) (1 diff)
-
hipaa-forms.php (modified) (3 diffs)
-
js/admin-script.js (modified) (1 diff)
-
js/script.js (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
codemonkeys-hipaa-forms/trunk/admin-enqueue.php
r3252639 r3253473 41 41 // ENQUEUE SCRIPT 42 42 wp_enqueue_script( 'jquery-form' ); 43 wp_enqueue_script( 'cmHipaaAdminBuggyFill', plugin_dir_url(__FILE__) . 'js/viewport-units-buggyfill.js', array('jquery'), '3.1. 0', true );44 wp_enqueue_script( 'cmHipaaAdminBuggyFillHack', plugin_dir_url(__FILE__) . 'js/viewport-units-buggyfill.hacks.js', array('jquery'), '3.1. 0', true );45 wp_enqueue_script( 'cmHipaaAdminScript', plugin_dir_url(__FILE__) . 'js/admin-script.js', array('jquery'), '3.1. 0', true );46 wp_enqueue_script( 'cm-hipaa-signature', plugin_dir_url(__FILE__) . 'js/jSignature/jSignature.min.noconflict.js', array('jquery'), '3.1. 0', true);47 wp_enqueue_script( 'cm-hipaa-jquery-print', plugin_dir_url(__FILE__) . 'js/printThis.js', array('jquery'), '3.1. 0', true);43 wp_enqueue_script( 'cmHipaaAdminBuggyFill', plugin_dir_url(__FILE__) . 'js/viewport-units-buggyfill.js', array('jquery'), '3.1.1', true ); 44 wp_enqueue_script( 'cmHipaaAdminBuggyFillHack', plugin_dir_url(__FILE__) . 'js/viewport-units-buggyfill.hacks.js', array('jquery'), '3.1.1', true ); 45 wp_enqueue_script( 'cmHipaaAdminScript', plugin_dir_url(__FILE__) . 'js/admin-script.js', array('jquery'), '3.1.1', true ); 46 wp_enqueue_script( 'cm-hipaa-signature', plugin_dir_url(__FILE__) . 'js/jSignature/jSignature.min.noconflict.js', array('jquery'), '3.1.1', true); 47 wp_enqueue_script( 'cm-hipaa-jquery-print', plugin_dir_url(__FILE__) . 'js/printThis.js', array('jquery'), '3.1.1', true); 48 48 }; 49 49 }; -
codemonkeys-hipaa-forms/trunk/css/admin-style.css
r3252639 r3253473 1 1 /** 2 2 * Created by Spencer on 7/16/2018. 3 * V3.1. 03 * V3.1.1 4 4 */ 5 5 -
codemonkeys-hipaa-forms/trunk/css/style.css
r3252639 r3253473 1 1 /** 2 2 * Created by Spencer on 7/16/2018. 3 * V3.1. 03 * V3.1.1 4 4 */ 5 5 -
codemonkeys-hipaa-forms/trunk/enqueue.php
r3252639 r3253473 18 18 19 19 // ENQUEUE CUSTOM JS 20 wp_enqueue_script( 'cmHipaaBuggyFill', plugin_dir_url(__FILE__) . 'js/viewport-units-buggyfill.js', array('jquery'), '3.1. 0', true );21 wp_enqueue_script( 'cmHipaaBuggyFillHack', plugin_dir_url(__FILE__) . 'js/viewport-units-buggyfill.hacks.js', array('jquery'), '3.1. 0', true );22 wp_enqueue_script('cm-hipaa-script', plugin_dir_url(__FILE__) . 'js/script.js', array('jquery'), '3.1. 0&time=' . time(), true);23 wp_enqueue_script('cm-hipaa-signature', plugin_dir_url(__FILE__) . 'js/jSignature/jSignature.min.noconflict.js', array('jquery'), '3.1. 0', true);20 wp_enqueue_script( 'cmHipaaBuggyFill', plugin_dir_url(__FILE__) . 'js/viewport-units-buggyfill.js', array('jquery'), '3.1.1', true ); 21 wp_enqueue_script( 'cmHipaaBuggyFillHack', plugin_dir_url(__FILE__) . 'js/viewport-units-buggyfill.hacks.js', array('jquery'), '3.1.1', true ); 22 wp_enqueue_script('cm-hipaa-script', plugin_dir_url(__FILE__) . 'js/script.js', array('jquery'), '3.1.1&time=' . time(), true); 23 wp_enqueue_script('cm-hipaa-signature', plugin_dir_url(__FILE__) . 'js/jSignature/jSignature.min.noconflict.js', array('jquery'), '3.1.1', true); 24 24 25 25 // CHECK IF HOMEPAGE -
codemonkeys-hipaa-forms/trunk/hipaa-forms.php
r3252639 r3253473 10 10 * Plugin URI: https://www.hipaaforms.online 11 11 * Description: HIPAA Compliant Forms 12 * Version: 3.1. 012 * Version: 3.1.1 13 13 * Author: Code Monkeys LLC 14 14 * Author URI: https://www.codemonkeysllc.com … … 19 19 require(plugin_dir_path(__FILE__) . 'admin-enqueue.php'); 20 20 21 if(esc_attr(get_option('form_builder')) === 'gravity') {21 /*if(esc_attr(get_option('form_builder')) === 'gravity') { 22 22 //* CHECK IF GRAVITY FORM IS LOADED ON PAGE 23 23 add_filter('wp', function () { … … 54 54 //* REQUIRE ENQUEUE FILE TO LOAD CSS & JS (WILL LOAD ON EVERY PAGE, NEEDED IF SOMEONE STILL USING DEPRECATED CALDERA) 55 55 require(plugin_dir_path(__FILE__) . 'enqueue.php'); 56 } 56 }*/ 57 58 //* REQUIRE ENQUEUE FILE TO LOAD CSS & JS (WILL LOAD ON EVERY PAGE, NEEDED IF SOMEONE STILL USING DEPRECATED CALDERA) 59 require(plugin_dir_path(__FILE__) . 'enqueue.php'); 57 60 58 61 //* REQUIRE HIPAA FORMS OPTIONS -
codemonkeys-hipaa-forms/trunk/js/admin-script.js
r3252639 r3253473 1 1 /** 2 2 * Created by Spencer on 7/16/2018. 3 * V3.1. 03 * V3.1.1 4 4 * Updated: 10/24/2023 by Dan 5 5 */ -
codemonkeys-hipaa-forms/trunk/js/script.js
r3252639 r3253473 2 2 * Created by Spencer on 7/16/2018. 3 3 * Updated by Dan on 7/14/2023. 4 * V3.1. 04 * V3.1.1 5 5 */ 6 6 … … 973 973 var settings = jQuery(this).data('settings'); 974 974 var uploadPath = jQuery(this).val(); 975 var uploadExtension = uploadPath.substring(uploadPath.lastIndexOf(".")+1, uploadPath.length) ;975 var uploadExtension = uploadPath.substring(uploadPath.lastIndexOf(".")+1, uploadPath.length).toLowerCase(); // ADDED TOLOWERCASE 976 976 //Default values 977 977 var uploadValidationErrors = []; -
codemonkeys-hipaa-forms/trunk/readme.txt
r3252639 r3253473 4 4 Requires at least: 5.4 5 5 Tested up to: 6.7.5 6 Stable tag: 3.1. 06 Stable tag: 3.1.1 7 7 License: GPLv2 8 8 … … 186 186 187 187 == Changelog == 188 V3.1.1 189 - Rolled back front-end enqueue change as check not working on all sites 190 188 191 V3.1.0 189 192 - Improved multi-page form success handler to prevent re-submitting an empty form & resetting to page 1
Note: See TracChangeset
for help on using the changeset viewer.