Plugin Directory

Changeset 2294534


Ignore:
Timestamp:
04/29/2020 06:14:56 PM (6 years ago)
Author:
earnware
Message:

Modified on_change submissions to not change input label to read "Processing..."

Location:
earnware-connect/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • earnware-connect/trunk/README.txt

    r2278889 r2294534  
    3333== Changelog ==
    3434
     35= 1.0.57 =
     36* Modified on_change submissions to not change input label to read "Processing..."
     37
    3538= 1.0.56 =
    3639* Styling all the things.
  • earnware-connect/trunk/public/class-wp-ew-public.php

    r2171358 r2294534  
    447447                jQuery("#{$formId} input[name='" + name + "']").parent().addClass('input-submit');
    448448                jQuery("#{$formId} input[name='" + name + "']").change((e) => {
    449                     jQuery(e.target).next().text('Processing...');
     449                    //jQuery(e.target).next().text('Processing...');
    450450                    jQuery("#{$formId}").submit(); 
    451451                });
     
    694694                jQuery("#{$formId} input[name='" + name + "']").parent().addClass('input-submit');
    695695                jQuery("#{$formId} input[name='" + name + "']").change((e) => {
    696                     jQuery(e.target).next().text('Processing...');
     696                    //jQuery(e.target).next().text('Processing...');
    697697                    jQuery("#{$formId}").submit(); 
    698698                });
  • earnware-connect/trunk/wp-ew.php

    r2278889 r2294534  
    1717 * Plugin URI:        https://www.earnware.com/wordpress/plugins/earnware-connect
    1818 * Description:       A plugin to connect any wordpress site to the Earnware Dashboard.
    19  * Version:           1.0.56
     19 * Version:           1.0.57
    2020 * Author:            Earnware Corporation
    2121 * Author URI:        https://earnware.com/about/
     
    3131}
    3232
    33 define( 'PLUGIN_NAME_VERSION', '1.0.56' );
     33define( 'PLUGIN_NAME_VERSION', '1.0.57' );
    3434
    3535/**
Note: See TracChangeset for help on using the changeset viewer.