Version Description
Download this release
Release Info
Developer | cbaldelomar |
Plugin | Shortcodes by Angie Makes |
Version | 3.46 |
Comparing to | |
See all releases |
Code changes from version 3.45 to 3.46
- README.md +4 -0
- public/assets/js/collage.js +1 -0
- public/assets/js/post-slider.js +1 -0
- public/class-vars.php +1 -1
- readme.txt +4 -0
- wc-shortcodes.php +1 -1
README.md
CHANGED
@@ -106,6 +106,10 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
|
|
106 |
|
107 |
## Changelog ##
|
108 |
|
|
|
|
|
|
|
|
|
109 |
### Version 3.45 ###
|
110 |
|
111 |
* Updated readme.
|
106 |
|
107 |
## Changelog ##
|
108 |
|
109 |
+
### Version 3.46 ###
|
110 |
+
|
111 |
+
* Fixed bug with slider button links not working in Chrome.
|
112 |
+
|
113 |
### Version 3.45 ###
|
114 |
|
115 |
* Updated readme.
|
public/assets/js/collage.js
CHANGED
@@ -13,6 +13,7 @@
|
|
13 |
'pager' : false,
|
14 |
'mode' : mode,
|
15 |
'auto' : auto,
|
|
|
16 |
'autoHover' : true,
|
17 |
'autoStart' : auto,
|
18 |
'pause' : pause,
|
13 |
'pager' : false,
|
14 |
'mode' : mode,
|
15 |
'auto' : auto,
|
16 |
+
'touchEnabled': false, // fixes problem with links not working in Google Chrome.
|
17 |
'autoHover' : true,
|
18 |
'autoStart' : auto,
|
19 |
'pause' : pause,
|
public/assets/js/post-slider.js
CHANGED
@@ -11,6 +11,7 @@
|
|
11 |
'pager' : false,
|
12 |
'mode' : mode,
|
13 |
'auto' : auto,
|
|
|
14 |
'autoHover' : true,
|
15 |
'autoStart' : auto,
|
16 |
'pause' : pause,
|
11 |
'pager' : false,
|
12 |
'mode' : mode,
|
13 |
'auto' : auto,
|
14 |
+
'touchEnabled': false, // fixes problem with links not working in Google Chrome.
|
15 |
'autoHover' : true,
|
16 |
'autoStart' : auto,
|
17 |
'pause' : pause,
|
public/class-vars.php
CHANGED
@@ -8,7 +8,7 @@ class WPC_Shortcodes_Vars {
|
|
8 |
*
|
9 |
* @var string
|
10 |
*/
|
11 |
-
const VERSION = '3.
|
12 |
const DB_VERSION = '1.0';
|
13 |
|
14 |
/**
|
8 |
*
|
9 |
* @var string
|
10 |
*/
|
11 |
+
const VERSION = '3.46';
|
12 |
const DB_VERSION = '1.0';
|
13 |
|
14 |
/**
|
readme.txt
CHANGED
@@ -113,6 +113,10 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
|
|
116 |
= Version 3.45 =
|
117 |
|
118 |
* Updated readme.
|
113 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
= Version 3.46 =
|
117 |
+
|
118 |
+
* Fixed bug with slider button links not working in Chrome.
|
119 |
+
|
120 |
= Version 3.45 =
|
121 |
|
122 |
* Updated readme.
|
wc-shortcodes.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://angiemakes.com/feminine-wordpress-blog-themes-women/
|
|
5 |
Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://angiemakes.com/
|
8 |
-
Version: 3.
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
5 |
Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://angiemakes.com/
|
8 |
+
Version: 3.46
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|