Version Description
- Fixed Placeholder text not showing in input on IE
Download this release
Release Info
Developer | WP-LiveChat |
Plugin | WP Live Chat Support |
Version | 3.06 |
Comparing to | |
See all releases |
Code changes from version 3.05 to 3.06
- ajax.php +0 -0
- beep-2.mp3 +0 -0
- ding.mp3 +0 -0
- functions.php +0 -0
- images/flash.ico +0 -0
- js/arrow.gif +0 -0
- js/cross.gif +0 -0
- js/hs.png +0 -0
- js/hv.png +0 -0
- js/jquery-cookie.js +0 -0
- js/jscolor.js +0 -0
- js/wplc_tabs.js +0 -0
- js/wplc_u.js +13 -0
- languages/wp-live-chat-support-default.mo +0 -0
- languages/wp-live-chat-support-default.po +0 -0
- readme.txt +13 -3
- ring.wav +0 -0
- screenshot-3.jpg +0 -0
- wp-live-chat-support.php +2 -2
ajax.php
CHANGED
File without changes
|
beep-2.mp3
CHANGED
File without changes
|
ding.mp3
CHANGED
File without changes
|
functions.php
CHANGED
File without changes
|
images/flash.ico
CHANGED
File without changes
|
js/arrow.gif
CHANGED
File without changes
|
js/cross.gif
CHANGED
File without changes
|
js/hs.png
CHANGED
File without changes
|
js/hv.png
CHANGED
File without changes
|
js/jquery-cookie.js
CHANGED
File without changes
|
js/jscolor.js
CHANGED
File without changes
|
js/wplc_tabs.js
CHANGED
File without changes
|
js/wplc_u.js
CHANGED
@@ -7,6 +7,19 @@
|
|
7 |
* 4 = Chat window - user and admin can now chat
|
8 |
*/
|
9 |
jQuery(document).ready(function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
|
12 |
|
7 |
* 4 = Chat window - user and admin can now chat
|
8 |
*/
|
9 |
jQuery(document).ready(function() {
|
10 |
+
jQuery('[placeholder]').focus(function() {
|
11 |
+
var input = jQuery(this);
|
12 |
+
if (input.val() == input.attr('placeholder')) {
|
13 |
+
input.val('');
|
14 |
+
input.removeClass('placeholder');
|
15 |
+
}
|
16 |
+
}).blur(function() {
|
17 |
+
var input = jQuery(this);
|
18 |
+
if (input.val() == '' || input.val() == input.attr('placeholder')) {
|
19 |
+
input.addClass('placeholder');
|
20 |
+
input.val(input.attr('placeholder'));
|
21 |
+
}
|
22 |
+
}).blur();
|
23 |
|
24 |
|
25 |
|
languages/wp-live-chat-support-default.mo
CHANGED
File without changes
|
languages/wp-live-chat-support-default.po
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: WP-LiveChat
|
|
3 |
Donate link: http://www.wp-livechat.com
|
4 |
Tags: live chat, live support, chat plugin, live help, wordpress chat, customer support, chat, live chat plugin, live support plugin, live chat support plugin, chat plugin, support plugin, support, chat software, chat online, visitor chat, chat, free chat, free live chat, customer support, online support, live help, chat widget, customer help
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 3.
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2
|
9 |
|
@@ -84,7 +84,17 @@ Please review the live chat documentation on [our website](http://wp-livechat.co
|
|
84 |
|
85 |
== Changelog ==
|
86 |
|
87 |
-
= 3.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
|
89 |
* Low priority update
|
90 |
|
@@ -170,4 +180,4 @@ Please review the live chat documentation on [our website](http://wp-livechat.co
|
|
170 |
* More text fields can be customized
|
171 |
|
172 |
= 1.0 =
|
173 |
-
* Launch!
|
3 |
Donate link: http://www.wp-livechat.com
|
4 |
Tags: live chat, live support, chat plugin, live help, wordpress chat, customer support, chat, live chat plugin, live support plugin, live chat support plugin, chat plugin, support plugin, support, chat software, chat online, visitor chat, chat, free chat, free live chat, customer support, online support, live help, chat widget, customer help
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 3.9.1
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2
|
9 |
|
84 |
|
85 |
== Changelog ==
|
86 |
|
87 |
+
= 3.07 =
|
88 |
+
|
89 |
+
* Fixed height issues with input boxes
|
90 |
+
* Fixed Input that was showing half over chat area
|
91 |
+
* Fixed Endless Connecting
|
92 |
+
|
93 |
+
= 3.06 =
|
94 |
+
|
95 |
+
* Fixed Placeholder text not showing in input on IE
|
96 |
+
|
97 |
+
= 3.05 =
|
98 |
|
99 |
* Low priority update
|
100 |
|
180 |
* More text fields can be customized
|
181 |
|
182 |
= 1.0 =
|
183 |
+
* Launch!
|
ring.wav
CHANGED
File without changes
|
screenshot-3.jpg
CHANGED
File without changes
|
wp-live-chat-support.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Live Chat Support
|
4 |
Plugin URI: http://www.wp-livechat.com
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
|
6 |
-
Version: 3.
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
@@ -17,7 +17,7 @@ global $wplc_tblname_chats;
|
|
17 |
global $wplc_tblname_msgs;
|
18 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
19 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
20 |
-
$wplc_version = "3.
|
21 |
|
22 |
require_once (plugin_dir_path( __FILE__ )."functions.php");
|
23 |
add_action('wp_ajax_wplc_admin_set_transient', 'wplc_action_callback');
|
3 |
Plugin Name: WP Live Chat Support
|
4 |
Plugin URI: http://www.wp-livechat.com
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
|
6 |
+
Version: 3.06
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
17 |
global $wplc_tblname_msgs;
|
18 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
19 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
20 |
+
$wplc_version = "3.06";
|
21 |
|
22 |
require_once (plugin_dir_path( __FILE__ )."functions.php");
|
23 |
add_action('wp_ajax_wplc_admin_set_transient', 'wplc_action_callback');
|