Ditty News Ticker - Version 1.0.7

Version Description

  • Fixed jQuery issue in Firefox when adding new ticks.
Download this release

Release Info

Developer metaphorcreations
Plugin Icon 128x128 Ditty News Ticker
Version 1.0.7
Comparing to
See all releases

Code changes from version 1.0.6 to 1.0.7

ditty-news-ticker.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ditty News Ticker
4
  Plugin URI: http://dittynewsticker.com/
5
  Description: Ditty News Ticker is a multi-functional data display plugin
6
- Version: 1.0.6
7
  Author: Metaphor Creations
8
  Author URI: http://www.metaphorcreations.com
9
  License: GPL2
@@ -45,9 +45,9 @@ The icons are licensed under a Creative Commons Attribution
45
  * @since 1.0.0
46
  */
47
  if ( WP_DEBUG ) {
48
- define ( 'MTPHR_DNT_VERSION', '1.0.6-'.time() );
49
  } else {
50
- define ( 'MTPHR_DNT_VERSION', '1.0.6' );
51
  }
52
  define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
53
  define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
3
  Plugin Name: Ditty News Ticker
4
  Plugin URI: http://dittynewsticker.com/
5
  Description: Ditty News Ticker is a multi-functional data display plugin
6
+ Version: 1.0.7
7
  Author: Metaphor Creations
8
  Author URI: http://www.metaphorcreations.com
9
  License: GPL2
45
  * @since 1.0.0
46
  */
47
  if ( WP_DEBUG ) {
48
+ define ( 'MTPHR_DNT_VERSION', '1.0.7-'.time() );
49
  } else {
50
+ define ( 'MTPHR_DNT_VERSION', '1.0.7' );
51
  }
52
  define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
53
  define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
includes/metaboxer/metaboxer.js CHANGED
@@ -267,7 +267,7 @@ $('.mtphr-dnt-metaboxer-list-item-add').live( 'click', function(e) {
267
  var $new = $parent.clone(true).hide();
268
  $new.find('input,textarea,select').removeAttr('value').removeAttr('checked').removeAttr('selected');
269
  $parent.after($new);
270
- $new.fadeIn();
271
 
272
  // Set the field order
273
  mtphr_dnt_metaboxer_lists_set_order( $(this).parents('.mtphr-dnt-metaboxer-list') );
267
  var $new = $parent.clone(true).hide();
268
  $new.find('input,textarea,select').removeAttr('value').removeAttr('checked').removeAttr('selected');
269
  $parent.after($new);
270
+ $new.fadeIn().css('display', 'table-row');
271
 
272
  // Set the field order
273
  mtphr_dnt_metaboxer_lists_set_order( $(this).parents('.mtphr-dnt-metaboxer-list') );
readme.txt CHANGED
@@ -52,6 +52,9 @@ Each individual Ticker post has multiple settings to customize.
52
 
53
  == Changelog ==
54
 
 
 
 
55
  = 1.0.6 =
56
  * Updated settings scripts for extensibility.
57
  * Minor update to metaboxer css.
@@ -85,6 +88,9 @@ Each individual Ticker post has multiple settings to customize.
85
 
86
  == Upgrade Notice ==
87
 
 
 
 
88
  = 1.0.6 =
89
  Updated settings scripts for extensibility. Minor update to metaboxer css.
90
 
52
 
53
  == Changelog ==
54
 
55
+ = 1.0.7 =
56
+ * Fixed jQuery issue in Firefox when adding new ticks.
57
+
58
  = 1.0.6 =
59
  * Updated settings scripts for extensibility.
60
  * Minor update to metaboxer css.
88
 
89
  == Upgrade Notice ==
90
 
91
+ = 1.0.7 =
92
+ Fixed jQuery issue in Firefox when adding new ticks.
93
+
94
  = 1.0.6 =
95
  Updated settings scripts for extensibility. Minor update to metaboxer css.
96