Changeset 2365744
- Timestamp:
- 08/20/2020 12:00:06 PM (6 years ago)
- Location:
- wp-reroute-email/trunk
- Files:
-
- 4 deleted
- 5 edited
-
js/jquery-ui-1.8.16.custom.min.js (deleted)
-
js/jquery.switchbutton.min.js (deleted)
-
js/jquery.tmpl.min.js (deleted)
-
js/ui.switchbutton.min.css (deleted)
-
js/wp-reroute-email.js (modified) (1 diff)
-
languages/wp_reroute_email-es_ES.mo (modified) (previous)
-
languages/wp_reroute_email-es_ES.po (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-reroute-email.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-reroute-email/trunk/js/wp-reroute-email.js
r2226063 r2365744 1 1 (function($){ 2 $(document).ready(function(){ 3 $('#enable_reroute').switchbutton(); 4 2 $(document).ready(function(){ 5 3 if($('#enable_reroute').is(':checked')){ 6 $('.settings-tables').show(function(){ 7 $('#append_recipient').switchbutton(); 8 $('#enable_db_log').switchbutton(); 9 }); 4 $('.settings-tables').show(); 10 5 } 11 6 12 7 $('.form-table').on('change', '#enable_reroute', function(){ 13 8 if($(this).is(':checked')){ 14 $('.settings-tables').slideDown(function(){ 15 $('#append_recipient').switchbutton(); 16 $('#enable_db_log').switchbutton(); 17 }); 9 $('.settings-tables').slideDown(); 18 10 } 19 11 else{ -
wp-reroute-email/trunk/languages/wp_reroute_email-es_ES.po
r2226063 r2365744 11 11 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 12 12 "Language: es_ES\n" 13 "X-Generator: Poedit 1.8.7.1\n"13 "X-Generator: Poedit 2.4.1\n" 14 14 15 15 msgid "Settings" … … 29 29 30 30 msgid "To change settings go %1$shere%2$s." 31 msgstr "Para cambiar la configuración, vaya %1$saquí% 2$s."31 msgstr "Para cambiar la configuración, vaya %1$saquí%2$s." 32 32 33 33 msgid "Enter at least one email address." -
wp-reroute-email/trunk/readme.txt
r2356834 r2365744 2 2 Contributors: msh134 3 3 Tags: mail, email, developer tool, development server 4 Tested up to: 5. 4.25 Stable tag: 1.4. 04 Tested up to: 5.5 5 Stable tag: 1.4.1 6 6 License: GPLv2 or later 7 7 … … 31 31 32 32 == Changelog == 33 = 1.4.1 = 34 * Removed fancy UI to resolve JS issue. 35 * Tested compatibility with 5.5. 36 * Fixed issue with Spanish translation. 37 33 38 = 1.4.0 = 34 39 * Made compatible with upcoming PHPMailer location change -
wp-reroute-email/trunk/wp-reroute-email.php
r2356834 r2365744 4 4 * Plugin URI: http://wordpress.org/extend/plugins/wp-reroute-email/ 5 5 * Description: This plugin intercepts all outgoing emails from a WordPress site and reroutes them to a predefined configurable email address. 6 * Version: 1.4. 06 * Version: 1.4.1 7 7 * Author: Sajjad Hossain 8 8 * Author URI: http://www.sajjadhossain.com … … 64 64 public function enqueueJS($hook) { 65 65 if ('wp-reroute-email/settings.php' == $hook || 'wp-reroute-email/db_log.php' == $hook) { 66 wp_enqueue_script('jquery-template', plugins_url('js/jquery.tmpl.min.js', __FILE__), array('jquery'), '1.0.0', true); 67 wp_enqueue_script('jquery-ui', plugins_url('js/jquery-ui-1.8.16.custom.min.js', __FILE__), array('jquery-template'), '1.8.16', true); 68 wp_enqueue_script('jquery-switchbutton', plugins_url('js/jquery.switchbutton.min.js', __FILE__), array('jquery-ui')); 69 wp_enqueue_script('wp-reroute-email-js', plugins_url('js/wp-reroute-email.js', __FILE__), array('jquery-switchbutton')); 70 wp_register_style('jquery-switchbutton-css', plugins_url('js/ui.switchbutton.min.css', __FILE__), false, '1.0.0'); 71 wp_enqueue_style('jquery-switchbutton-css'); 66 wp_enqueue_script('wp-reroute-email-js', plugins_url('js/wp-reroute-email.js', __FILE__), array('jquery')); 72 67 wp_register_style('wp-reroute-email-css', plugins_url('css/wp-reroute-email-styles.css', __FILE__), false, '1.0.0'); 73 68 wp_enqueue_style('wp-reroute-email-css');
Note: See TracChangeset
for help on using the changeset viewer.