Version Description
Download this release
Release Info
| Developer | jakemgold |
| Plugin | |
| Version | 0.9.1 |
| Comparing to | |
| See all releases | |
Code changes from version 0.9 to 0.9.1
- readme.txt +2 -2
- simple-page-ordering.php +1 -1
- spo-ordering.js +2 -2
readme.txt
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
=== Simple Page Ordering ===
|
| 2 |
-
Contributors:
|
| 3 |
Donate link: http://www.thinkoomph.com/plugins-modules/wordpress-page-order-plugin/
|
| 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
|
| 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 |
|
| 1 |
=== Simple Page Ordering ===
|
| 2 |
+
Contributors: jakemgold
|
| 3 |
Donate link: http://www.thinkoomph.com/plugins-modules/wordpress-page-order-plugin/
|
| 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.1
|
| 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 |
|
simple-page-ordering.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: Simple Page Ordering
|
| 4 |
Plugin URI: http://www.thinkoomph.com/plugins-modules/wordpress-page-order-plugin/
|
| 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
|
| 7 |
Author: Jake Goldman (Oomph, Inc)
|
| 8 |
Author URI: http://www.thinkoomph.com
|
| 9 |
|
| 3 |
Plugin Name: Simple Page Ordering
|
| 4 |
Plugin URI: http://www.thinkoomph.com/plugins-modules/wordpress-page-order-plugin/
|
| 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.1
|
| 7 |
Author: Jake Goldman (Oomph, Inc)
|
| 8 |
Author URI: http://www.thinkoomph.com
|
| 9 |
|
spo-ordering.js
CHANGED
|
@@ -11,12 +11,12 @@ jQuery("table.widefat tbody").sortable({
|
|
| 11 |
},
|
| 12 |
start: function(event, ui) {
|
| 13 |
if ( ! ui.item.hasClass('alternate') ) ui.item.css( 'background-color', '#ffffff' );
|
| 14 |
-
ui.item.children('td,th').css('border','
|
| 15 |
ui.item.css( 'outline', '1px solid #dfdfdf' );
|
| 16 |
},
|
| 17 |
stop: function(event, ui) {
|
| 18 |
ui.item.removeAttr('style');
|
| 19 |
-
ui.item.children('td,th').
|
| 20 |
},
|
| 21 |
update: function(event, ui) {
|
| 22 |
if ( ui.item.hasClass('inline-editor') ) {
|
| 11 |
},
|
| 12 |
start: function(event, ui) {
|
| 13 |
if ( ! ui.item.hasClass('alternate') ) ui.item.css( 'background-color', '#ffffff' );
|
| 14 |
+
ui.item.children('td,th').css('border-bottom-width','0');
|
| 15 |
ui.item.css( 'outline', '1px solid #dfdfdf' );
|
| 16 |
},
|
| 17 |
stop: function(event, ui) {
|
| 18 |
ui.item.removeAttr('style');
|
| 19 |
+
ui.item.children('td,th').css('border-bottom-width','1px');
|
| 20 |
},
|
| 21 |
update: function(event, ui) {
|
| 22 |
if ( ui.item.hasClass('inline-editor') ) {
|
