Changeset 3039747
- Timestamp:
- 02/22/2024 02:10:20 PM (2 years ago)
- Location:
- easyling/trunk
- Files:
-
- 3 edited
-
assets/js/admin.js (modified) (2 diffs)
-
easyling.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easyling/trunk/assets/js/admin.js
r2922201 r3039747 21 21 locationHost = $.trim( locationHost ); 22 22 projectCode = $.trim( projectCode ); 23 24 if ( ! locationHost || ! projectCode) {23 24 if ( ! locationHost ) { 25 25 $('#EasylingLocationLogin').attr( 'href', '#' ); 26 26 $('#EasylingLocationLogin').attr( 'onclick', 'return false' ); … … 28 28 } 29 29 30 var url = 'https://' + locationHost + '/_el/dashboard/project/' + projectCode + '/language-selector'; 30 var url = 'https://' + locationHost; 31 32 if ( ! projectCode ) { 33 $('#EasylingLocationLogin').attr( 'href', url ); 34 $('#EasylingLocationLogin').removeAttr( 'onclick' ); 35 return; 36 } 37 38 url += '/_el/dashboard/project/' + projectCode + '/language-selector'; 31 39 $('#EasylingLocationLogin').attr( 'href', url ); 32 40 $('#EasylingLocationLogin').removeAttr( 'onclick' ); -
easyling/trunk/easyling.php
r3035871 r3039747 4 4 Plugin URI: https://www.easyling.com/ 5 5 Description: One-click website translation solution from Easyling. 6 Version: 1. 66 Version: 1.7 7 7 Author: Easyling 8 8 Copyright: Easyling … … 75 75 private function __construct() { 76 76 $this->settings = array( 77 'version' => '1. 3',77 'version' => '1.7', 78 78 'path' => plugin_dir_path( __FILE__ ), 79 79 'url' => plugin_dir_url( __FILE__ ), -
easyling/trunk/readme.txt
r3035871 r3039747 4 4 Requires at least: 4.7 5 5 Tested up to: 6.4.1 6 Stable tag: 1. 66 Stable tag: 1.7 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 42 42 43 43 1. Plugin settings. 44 44 45 45 == Changelog == 46 = 1.7 = 47 Release Date: February 22nd, 2024 48 49 Enhancements: 50 51 * Small tweaks in admin area 52 46 53 = 1.6 = 47 54 Release Date: February 14th, 2024
Note: See TracChangeset
for help on using the changeset viewer.