Version Description
- FIX javascript error on IE11.
Download this release
Release Info
Developer | creapuntome |
Plugin | WhatsApp me |
Version | 2.1.1 |
Comparing to | |
See all releases |
Code changes from version 2.1.0 to 2.1.1
- README.txt +4 -1
- admin/class-whatsappme-admin.php +1 -1
- public/js/whatsappme.js +9 -0
- whatsappme.php +2 -2
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: whatsapp, button, chat, support, contact
|
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.9.4
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 2.1.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -61,6 +61,9 @@ WhatsApp me don't save any personal data and don't use cookies.
|
|
61 |
|
62 |
== Changelog ==
|
63 |
|
|
|
|
|
|
|
64 |
= 2.1.0 =
|
65 |
* **NEW:** Button bagde option for a less intrusive mode.
|
66 |
* CHANGED now each different Call to Action is marked as read separately.
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.9.4
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 2.1.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
61 |
|
62 |
== Changelog ==
|
63 |
|
64 |
+
= 2.1.1 =
|
65 |
+
* FIX javascript error on IE11.
|
66 |
+
|
67 |
= 2.1.0 =
|
68 |
* **NEW:** Button bagde option for a less intrusive mode.
|
69 |
* CHANGED now each different Call to Action is marked as read separately.
|
admin/class-whatsappme-admin.php
CHANGED
@@ -568,7 +568,7 @@ class WhatsAppMe_Admin {
|
|
568 |
<style>
|
569 |
.whatsappme-metabox code { font-size:smaller; vertical-align:text-bottom; }
|
570 |
.whatsappme-metabox .dashicons { opacity:.5; }
|
571 |
-
.whatsappme-metabox input[type=radio] { margin-right:
|
572 |
.whatsappme-metabox input[type=radio]+span { margin-right:5px; transition:all 200ms; }
|
573 |
.whatsappme-metabox input[type=radio]:checked+span { color:#79ba49; opacity:1; }
|
574 |
.whatsappme-metabox input[type=radio]:checked+.dashicons-hidden { color:#ca4a1f; }
|
568 |
<style>
|
569 |
.whatsappme-metabox code { font-size:smaller; vertical-align:text-bottom; }
|
570 |
.whatsappme-metabox .dashicons { opacity:.5; }
|
571 |
+
.whatsappme-metabox input[type=radio] { margin-right:1px; }
|
572 |
.whatsappme-metabox input[type=radio]+span { margin-right:5px; transition:all 200ms; }
|
573 |
.whatsappme-metabox input[type=radio]:checked+span { color:#79ba49; opacity:1; }
|
574 |
.whatsappme-metabox input[type=radio]:checked+.dashicons-hidden { color:#ca4a1f; }
|
public/js/whatsappme.js
CHANGED
@@ -130,4 +130,13 @@
|
|
130 |
}
|
131 |
}
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
}(jQuery));
|
130 |
}
|
131 |
}
|
132 |
|
133 |
+
// Math.imul polyfill (source https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/imul#Polyfill)
|
134 |
+
Math.imul = Math.imul || function(a, b) {
|
135 |
+
var ah = (a >>> 16) & 0xffff;
|
136 |
+
var al = a & 0xffff;
|
137 |
+
var bh = (b >>> 16) & 0xffff;
|
138 |
+
var bl = b & 0xffff;
|
139 |
+
return ((al * bl) + (((ah * bl + al * bh) << 16) >>> 0)|0);
|
140 |
+
};
|
141 |
+
|
142 |
}(jQuery));
|
whatsappme.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
* Plugin Name: WhatsApp me
|
10 |
* Plugin URI: http://wame.chat
|
11 |
* Description: Add support to your clients directly with WhatsApp.
|
12 |
-
* Version: 2.1.
|
13 |
* Author: Creame
|
14 |
* Author URI: https://crea.me
|
15 |
* License: GPL-2.0+
|
@@ -27,7 +27,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
27 |
* Currently plugin version.
|
28 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
29 |
*/
|
30 |
-
define( 'WHATSAPPME_VERSION', '2.1.
|
31 |
|
32 |
/**
|
33 |
* The core plugin class that is used to define internationalization,
|
9 |
* Plugin Name: WhatsApp me
|
10 |
* Plugin URI: http://wame.chat
|
11 |
* Description: Add support to your clients directly with WhatsApp.
|
12 |
+
* Version: 2.1.1
|
13 |
* Author: Creame
|
14 |
* Author URI: https://crea.me
|
15 |
* License: GPL-2.0+
|
27 |
* Currently plugin version.
|
28 |
* Start at version 1.0.0 and use SemVer - https://semver.org
|
29 |
*/
|
30 |
+
define( 'WHATSAPPME_VERSION', '2.1.1' );
|
31 |
|
32 |
/**
|
33 |
* The core plugin class that is used to define internationalization,
|