Version Description
- Fix saving project data after creating new project
Download this release
Release Info
Developer | lucastidio |
Plugin | Tidio Live Chat |
Version | 4.0.1 |
Comparing to | |
See all releases |
Code changes from version 4.0.0 to 4.0.1
- media/js/options.js +2 -1
- readme.txt +3 -0
- tidio-elements.php +2 -2
media/js/options.js
CHANGED
@@ -100,10 +100,11 @@ jQuery(function ($) {
|
|
100 |
return false;
|
101 |
},
|
102 |
redirectToPanel: function () {
|
|
|
103 |
var redirect = function (response) {
|
104 |
window.open(response, '_blank');
|
105 |
TidioChatWP.setRedirectLink(response);
|
106 |
-
|
107 |
$('#after-install-text').fadeIn('fast');
|
108 |
});
|
109 |
};
|
100 |
return false;
|
101 |
},
|
102 |
redirectToPanel: function () {
|
103 |
+
var form = this.form;
|
104 |
var redirect = function (response) {
|
105 |
window.open(response, '_blank');
|
106 |
TidioChatWP.setRedirectLink(response);
|
107 |
+
form.fadeOut('fast', function () {
|
108 |
$('#after-install-text').fadeIn('fast');
|
109 |
});
|
110 |
};
|
readme.txt
CHANGED
@@ -121,6 +121,9 @@ Yes, simply go to your chat panel and switch the “Display” option to off.
|
|
121 |
|
122 |
== Changelog ==
|
123 |
|
|
|
|
|
|
|
124 |
= 4.0.0 =
|
125 |
* New integration flow
|
126 |
* Refresh styles to match Tidio design
|
121 |
|
122 |
== Changelog ==
|
123 |
|
124 |
+
= 4.0.1 =
|
125 |
+
* Fix saving project data after creating new project
|
126 |
+
|
127 |
= 4.0.0 =
|
128 |
* New integration flow
|
129 |
* Refresh styles to match Tidio design
|
tidio-elements.php
CHANGED
@@ -4,12 +4,12 @@
|
|
4 |
* Plugin Name: Tidio Chat
|
5 |
* Plugin URI: http://www.tidiochat.com
|
6 |
* Description: Tidio Live Chat - Live chat for your website. No logging in, no signing up - integrates with your website in less than 20 seconds.
|
7 |
-
* Version: 4.0.
|
8 |
* Author: Tidio Ltd.
|
9 |
* Author URI: http://www.tidiochat.com
|
10 |
* License: GPL2
|
11 |
*/
|
12 |
-
define('TIDIOCHAT_VERSION', '4.0.
|
13 |
define('AFFILIATE_CONFIG_FILE_PATH', get_template_directory().'/tidio_affiliate_ref_id.txt');
|
14 |
|
15 |
class TidioLiveChat
|
4 |
* Plugin Name: Tidio Chat
|
5 |
* Plugin URI: http://www.tidiochat.com
|
6 |
* Description: Tidio Live Chat - Live chat for your website. No logging in, no signing up - integrates with your website in less than 20 seconds.
|
7 |
+
* Version: 4.0.1
|
8 |
* Author: Tidio Ltd.
|
9 |
* Author URI: http://www.tidiochat.com
|
10 |
* License: GPL2
|
11 |
*/
|
12 |
+
define('TIDIOCHAT_VERSION', '4.0.1');
|
13 |
define('AFFILIATE_CONFIG_FILE_PATH', get_template_directory().'/tidio_affiliate_ref_id.txt');
|
14 |
|
15 |
class TidioLiveChat
|