Version Description
Download this release
Release Info
Developer | cbaldelomar |
Plugin | Shortcodes by Angie Makes |
Version | 1.19 |
Comparing to | |
See all releases |
Code changes from version 1.18 to 1.19
- README.md +4 -0
- includes/js/posts.js +12 -1
- readme.txt +4 -0
- wc-shortcodes.php +2 -2
README.md
CHANGED
@@ -64,6 +64,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
64 |
|
65 |
## Changelog ##
|
66 |
|
|
|
|
|
|
|
|
|
67 |
### Version 1.18
|
68 |
|
69 |
* Navigation element needed to return string and no echo value.
|
64 |
|
65 |
## Changelog ##
|
66 |
|
67 |
+
### Version 1.19
|
68 |
+
|
69 |
+
* Refreshed isotope display on image load.
|
70 |
+
|
71 |
### Version 1.18
|
72 |
|
73 |
* Navigation element needed to return string and no echo value.
|
includes/js/posts.js
CHANGED
@@ -80,7 +80,6 @@
|
|
80 |
|
81 |
calculateGrid();
|
82 |
|
83 |
-
|
84 |
$container.isotope({
|
85 |
itemSelector : '.wc-shortcodes-post-box',
|
86 |
resizable: false,
|
@@ -89,6 +88,18 @@
|
|
89 |
gutterWidth: gutterWidth
|
90 |
}
|
91 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
$(window).smartresize(function(){
|
93 |
calculateGrid();
|
94 |
$container.isotope({
|
80 |
|
81 |
calculateGrid();
|
82 |
|
|
|
83 |
$container.isotope({
|
84 |
itemSelector : '.wc-shortcodes-post-box',
|
85 |
resizable: false,
|
88 |
gutterWidth: gutterWidth
|
89 |
}
|
90 |
});
|
91 |
+
$container.imagesLoaded( function(){
|
92 |
+
calculateGrid();
|
93 |
+
|
94 |
+
$container.isotope({
|
95 |
+
itemSelector : '.wc-shortcodes-post-box',
|
96 |
+
resizable: false,
|
97 |
+
masonry: {
|
98 |
+
columnWidth: columnWidth,
|
99 |
+
gutterWidth: gutterWidth
|
100 |
+
}
|
101 |
+
});
|
102 |
+
});
|
103 |
$(window).smartresize(function(){
|
104 |
calculateGrid();
|
105 |
$container.isotope({
|
readme.txt
CHANGED
@@ -84,6 +84,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
84 |
|
85 |
== Changelog ==
|
86 |
|
|
|
|
|
|
|
|
|
87 |
### Version 1.18
|
88 |
|
89 |
* Navigation element needed to return string and no echo value.
|
84 |
|
85 |
== Changelog ==
|
86 |
|
87 |
+
### Version 1.19
|
88 |
+
|
89 |
+
* Refreshed isotope display on image load.
|
90 |
+
|
91 |
### Version 1.18
|
92 |
|
93 |
* Navigation element needed to return string and no echo value.
|
wc-shortcodes.php
CHANGED
@@ -5,11 +5,11 @@ Plugin URI: http://wordpresscanvas.com/features/shortcodes/
|
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
-
Version: 1.
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
-
define( 'WC_SHORTCODES_VERSION', '1.
|
13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
+
Version: 1.19
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
+
define( 'WC_SHORTCODES_VERSION', '1.19' );
|
13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|