Animate It! - Version 1.4.1

Version Description

Download this release

Release Info

Developer eleopard
Plugin Icon 128x128 Animate It!
Version 1.4.1
Comparing to
See all releases

Code changes from version 1.4.0 to 1.4.1

Files changed (2) hide show
  1. edsanimate.php +5 -5
  2. readme.txt +4 -1
edsanimate.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Animate It!
4
  * Plugin URI: http://www.eleopard.in
5
  * Description: It will allow user to add CSS Animations
6
- * Version: 1.4.0
7
  * Author: eLEOPARD Design Studios
8
  * Author URI: http://www.eleopard.in
9
  * License: GNU General Public License version 2 or later; see LICENSE.txt
@@ -222,7 +222,7 @@ function edsanimate_handler( $attributes, $content = null ) {
222
 
223
  if($animation == '')
224
  {
225
- return $content;
226
  }
227
 
228
  $classString .= " " . $animation;
@@ -244,12 +244,12 @@ function edsanimate_handler( $attributes, $content = null ) {
244
  $classString .= " eds-on-hover";
245
 
246
  if(isset($scroll_offset) && $scroll_offset!=''){
247
- return '<div class="'.$classString.'" eds_scroll_offset="'.$scroll_offset.'">'.$content.'</div>';
248
  }else
249
- return '<div class="'.$classString.'">'.$content.'</div>';
250
 
251
  else:
252
- return $content;
253
  endif;
254
 
255
  }
3
  * Plugin Name: Animate It!
4
  * Plugin URI: http://www.eleopard.in
5
  * Description: It will allow user to add CSS Animations
6
+ * Version: 1.4.1
7
  * Author: eLEOPARD Design Studios
8
  * Author URI: http://www.eleopard.in
9
  * License: GNU General Public License version 2 or later; see LICENSE.txt
222
 
223
  if($animation == '')
224
  {
225
+ return $content;
226
  }
227
 
228
  $classString .= " " . $animation;
244
  $classString .= " eds-on-hover";
245
 
246
  if(isset($scroll_offset) && $scroll_offset!=''){
247
+ return '<div class="'.$classString.'" eds_scroll_offset="'.$scroll_offset.'">'.do_shortcode($content).'</div>';
248
  }else
249
+ return '<div class="'.$classString.'">'.do_shortcode($content).'</div>';
250
 
251
  else:
252
+ return do_shortcode($content);
253
  endif;
254
 
255
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: eleopard
3
  Tags: css3 animation, animate.css, jquery, on scroll animation, delay animation
4
  Requires at least: 3.0
5
  Tested up to: 4.1.1
6
- Stable tag: 1.4.0
7
  License: GNU General Public License version 2 or later
8
  License URI: http://www.gnu.org/copyleft/gpl.html
9
 
@@ -65,6 +65,9 @@ Percentage scroll offset can be set from Settings-> Animate It! menu in the admi
65
 
66
  == Changelog ==
67
 
 
 
 
68
  = Version 1.4.0 =
69
  * Resolved issue related to CSS.
70
  * New feature that will allow user to add different scroll offset on individual animation blocks.
3
  Tags: css3 animation, animate.css, jquery, on scroll animation, delay animation
4
  Requires at least: 3.0
5
  Tested up to: 4.1.1
6
+ Stable tag: 1.4.1
7
  License: GNU General Public License version 2 or later
8
  License URI: http://www.gnu.org/copyleft/gpl.html
9
 
65
 
66
  == Changelog ==
67
 
68
+ = Version 1.4.1 =
69
+ * Resolved bug related to nested shortcodes.
70
+
71
  = Version 1.4.0 =
72
  * Resolved issue related to CSS.
73
  * New feature that will allow user to add different scroll offset on individual animation blocks.