Changeset 1829982
- Timestamp:
- 02/27/2018 10:49:30 AM (8 years ago)
- Location:
- scramble-email
- Files:
-
- 2 deleted
- 4 edited
- 13 copied
-
tags/1.2.1 (copied) (copied from scramble-email/trunk)
-
tags/1.2.1/LICENSE.txt (copied) (copied from scramble-email/trunk/LICENSE.txt)
-
tags/1.2.1/README.txt (copied) (copied from scramble-email/trunk/README.txt) (2 diffs)
-
tags/1.2.1/admin (copied) (copied from scramble-email/trunk/admin)
-
tags/1.2.1/admin/class-scramble-email-admin.php (copied) (copied from scramble-email/trunk/admin/class-scramble-email-admin.php)
-
tags/1.2.1/admin/class-scramble-email-settings.php (copied) (copied from scramble-email/trunk/admin/class-scramble-email-settings.php)
-
tags/1.2.1/admin/css/scem-settings.css (copied) (copied from scramble-email/trunk/admin/css/scem-settings.css)
-
tags/1.2.1/admin/js/scem-mce-plugin.js (copied) (copied from scramble-email/trunk/admin/js/scem-mce-plugin.js) (1 diff)
-
tags/1.2.1/index.php (copied) (copied from scramble-email/trunk/index.php)
-
tags/1.2.1/js (copied) (copied from scramble-email/trunk/js)
-
tags/1.2.1/js/scem-mce-plugin.js (deleted)
-
tags/1.2.1/js/scem-wpview.js (deleted)
-
tags/1.2.1/js/scem.js (copied) (copied from scramble-email/trunk/js/scem.js) (1 diff)
-
tags/1.2.1/scramble-email.php (copied) (copied from scramble-email/trunk/scramble-email.php) (1 diff)
-
tags/1.2.1/uninstall.php (copied) (copied from scramble-email/trunk/uninstall.php)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/js/scem-mce-plugin.js (modified) (1 diff)
-
trunk/js/scem.js (modified) (1 diff)
-
trunk/scramble-email.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
scramble-email/tags/1.2.1/README.txt
r1829622 r1829982 4 4 Requires at least: 4.4 5 5 Tested up to: 4.9.4 6 Stable tag: 1.2. 06 Stable tag: 1.2.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 30 30 == Changelog == 31 31 32 = 1.2.1 - 27/02/2018 = 33 * Fix: JS template string not supported by older browsers 34 32 35 = 1.2.0 - 26/02/2018 = 33 36 * 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 67 67 } 68 68 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, '##') +'"/]'; 70 70 71 71 if ( isset(update) ) update( shortcode ); -
scramble-email/tags/1.2.1/js/scem.js
r1829622 r1829982 64 64 65 65 if ( !_empty(attrs.subject) ) { 66 a.href += `?subject=${encodeURIComponent(attrs.subject)}`;66 a.href += '?subject='+ encodeURIComponent(attrs.subject); 67 67 delete attrs.subject; 68 68 } -
scramble-email/tags/1.2.1/scramble-email.php
r1829622 r1829982 4 4 * 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. 5 5 * Author: Kuuak 6 * Version: 1.2. 06 * Version: 1.2.1 7 7 * Author URI: https://github.com/Kuuak 8 8 * License: GPL-2.0+ -
scramble-email/trunk/README.txt
r1829622 r1829982 4 4 Requires at least: 4.4 5 5 Tested up to: 4.9.4 6 Stable tag: 1.2. 06 Stable tag: 1.2.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 30 30 == Changelog == 31 31 32 = 1.2.1 - 27/02/2018 = 33 * Fix: JS template string not supported by older browsers 34 32 35 = 1.2.0 - 26/02/2018 = 33 36 * 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 67 67 } 68 68 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, '##') +'"/]'; 70 70 71 71 if ( isset(update) ) update( shortcode ); -
scramble-email/trunk/js/scem.js
r1829622 r1829982 64 64 65 65 if ( !_empty(attrs.subject) ) { 66 a.href += `?subject=${encodeURIComponent(attrs.subject)}`;66 a.href += '?subject='+ encodeURIComponent(attrs.subject); 67 67 delete attrs.subject; 68 68 } -
scramble-email/trunk/scramble-email.php
r1829622 r1829982 4 4 * 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. 5 5 * Author: Kuuak 6 * Version: 1.2. 06 * Version: 1.2.1 7 7 * Author URI: https://github.com/Kuuak 8 8 * License: GPL-2.0+
Note: See TracChangeset
for help on using the changeset viewer.