Plugin Directory

Changeset 1829982


Ignore:
Timestamp:
02/27/2018 10:49:30 AM (8 years ago)
Author:
Kuuak
Message:

v1.2.1

Location:
scramble-email
Files:
2 deleted
4 edited
13 copied

Legend:

Unmodified
Added
Removed
  • scramble-email/tags/1.2.1/README.txt

    r1829622 r1829982  
    44Requires at least: 4.4
    55Tested up to: 4.9.4
    6 Stable tag: 1.2.0
     6Stable tag: 1.2.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3030== Changelog ==
    3131
     32= 1.2.1 - 27/02/2018 =
     33* Fix: JS template string not supported by older browsers
     34
    3235= 1.2.0 - 26/02/2018 =
    3336* Add: WYSIWYG content filtering. Automatically scramble the email link in the WYSIWYG editor. activable by an option in the new options page.
  • scramble-email/tags/1.2.1/admin/js/scem-mce-plugin.js

    r1829622 r1829982  
    6767                }
    6868
    69                 var shortcode = `[scem email="${event.data.email}" title="${event.data.title}" attrs="${JSON.stringify(attrs).replace(/"/g, '##')}"/]`;
     69                var shortcode = '[scem email="'+ event.data.email +'" title="'+ event.data.title +'" attrs="'+ JSON.stringify(attrs).replace(/"/g, '##') +'"/]';
    7070
    7171                if ( isset(update) )    update( shortcode );
  • scramble-email/tags/1.2.1/js/scem.js

    r1829622 r1829982  
    6464
    6565        if ( !_empty(attrs.subject) ) {
    66             a.href += `?subject=${encodeURIComponent(attrs.subject)}`;
     66            a.href += '?subject='+ encodeURIComponent(attrs.subject);
    6767            delete attrs.subject;
    6868        }
  • scramble-email/tags/1.2.1/scramble-email.php

    r1829622 r1829982  
    44 * Description:     Protect your email addresses from being harvested by automatic bots. Simply replace the emails in your post or page content by an unique shortcode.
    55 * Author:              Kuuak
    6  * Version:             1.2.0
     6 * Version:             1.2.1
    77 * Author URI:      https://github.com/Kuuak
    88 * License:             GPL-2.0+
  • scramble-email/trunk/README.txt

    r1829622 r1829982  
    44Requires at least: 4.4
    55Tested up to: 4.9.4
    6 Stable tag: 1.2.0
     6Stable tag: 1.2.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3030== Changelog ==
    3131
     32= 1.2.1 - 27/02/2018 =
     33* Fix: JS template string not supported by older browsers
     34
    3235= 1.2.0 - 26/02/2018 =
    3336* Add: WYSIWYG content filtering. Automatically scramble the email link in the WYSIWYG editor. activable by an option in the new options page.
  • scramble-email/trunk/admin/js/scem-mce-plugin.js

    r1829622 r1829982  
    6767                }
    6868
    69                 var shortcode = `[scem email="${event.data.email}" title="${event.data.title}" attrs="${JSON.stringify(attrs).replace(/"/g, '##')}"/]`;
     69                var shortcode = '[scem email="'+ event.data.email +'" title="'+ event.data.title +'" attrs="'+ JSON.stringify(attrs).replace(/"/g, '##') +'"/]';
    7070
    7171                if ( isset(update) )    update( shortcode );
  • scramble-email/trunk/js/scem.js

    r1829622 r1829982  
    6464
    6565        if ( !_empty(attrs.subject) ) {
    66             a.href += `?subject=${encodeURIComponent(attrs.subject)}`;
     66            a.href += '?subject='+ encodeURIComponent(attrs.subject);
    6767            delete attrs.subject;
    6868        }
  • scramble-email/trunk/scramble-email.php

    r1829622 r1829982  
    44 * Description:     Protect your email addresses from being harvested by automatic bots. Simply replace the emails in your post or page content by an unique shortcode.
    55 * Author:              Kuuak
    6  * Version:             1.2.0
     6 * Version:             1.2.1
    77 * Author URI:      https://github.com/Kuuak
    88 * License:             GPL-2.0+
Note: See TracChangeset for help on using the changeset viewer.