Simple Page Ordering - Version 0.9.6

Version Description

  • Fix for broken inline editing (quick edit) fields in Firefox
Download this release

Release Info

Developer jakemgold
Plugin Icon 128x128 Simple Page Ordering
Version 0.9.6
Comparing to
See all releases

Code changes from version 0.9.5 to 0.9.6

readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.get10up.com/plugins/simple-page-ordering-wordpress/
4
  Tags: order, re-order, ordering, pages, page, manage, menu_order, hierarchical, ajax, drag-and-drop, admin
5
  Requires at least: 3.0.1
6
  Tested up to: 3.1
7
- Stable tag: 0.9.5
8
 
9
  Order your pages and other hierarchical post types with simple drag and drop. Also adds a drop down to change items per page.
10
 
@@ -48,6 +48,9 @@ folder to the `/wp-content/plugins/` directory
48
 
49
  == Changelog ==
50
 
 
 
 
51
  = 0.9.5 =
52
  * Smarter awareness of "sorted" modes in WordPress 3.1 (can only use when sorted by menu order)
53
  * Smarter awareness of "quick edit" mode (can't drag)
4
  Tags: order, re-order, ordering, pages, page, manage, menu_order, hierarchical, ajax, drag-and-drop, admin
5
  Requires at least: 3.0.1
6
  Tested up to: 3.1
7
+ Stable tag: 0.9.6
8
 
9
  Order your pages and other hierarchical post types with simple drag and drop. Also adds a drop down to change items per page.
10
 
48
 
49
  == Changelog ==
50
 
51
+ = 0.9.6 =
52
+ * Fix for broken inline editing (quick edit) fields in Firefox
53
+
54
  = 0.9.5 =
55
  * Smarter awareness of "sorted" modes in WordPress 3.1 (can only use when sorted by menu order)
56
  * Smarter awareness of "quick edit" mode (can't drag)
simple-page-ordering.js CHANGED
@@ -19,7 +19,7 @@ jQuery("table.widefat tbody").sortable({
19
  },
20
  stop: function(event, ui) {
21
  ui.item.removeAttr('style');
22
- ui.item.children('td,th').css('border-bottom-width','1px');
23
  },
24
  update: function(event, ui) {
25
  var postid = ui.item.find('.check-column input').val(); // this post id
@@ -69,6 +69,6 @@ jQuery("table.widefat tbody").sortable({
69
  else jQuery(this).removeClass('alternate');
70
  });
71
  }
72
- }).disableSelection();
73
 
74
  }
19
  },
20
  stop: function(event, ui) {
21
  ui.item.removeAttr('style');
22
+ ui.item.children('td,th').css('border-bottom-width','1px');
23
  },
24
  update: function(event, ui) {
25
  var postid = ui.item.find('.check-column input').val(); // this post id
69
  else jQuery(this).removeClass('alternate');
70
  });
71
  }
72
+ });
73
 
74
  }
simple-page-ordering.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Simple Page Ordering
4
  Plugin URI: http://www.get10up.com/plugins/simple-page-ordering-wordpress/
5
  Description: Order your pages and hierarchical post types using drag and drop on the built in page list. Also adds a filter for items to show per page. For further instructions, open the "Help" tab on the Pages screen.
6
- Version: 0.9.5
7
  Author: Jake Goldman (10up)
8
  Author URI: http://www.get10up.com
9
 
3
  Plugin Name: Simple Page Ordering
4
  Plugin URI: http://www.get10up.com/plugins/simple-page-ordering-wordpress/
5
  Description: Order your pages and hierarchical post types using drag and drop on the built in page list. Also adds a filter for items to show per page. For further instructions, open the "Help" tab on the Pages screen.
6
+ Version: 0.9.6
7
  Author: Jake Goldman (10up)
8
  Author URI: http://www.get10up.com
9