Fixed a bug for sortable table

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9169 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2011-09-16 01:29:34 +00:00
parent ad9e45151e
commit 1132139474

View file

@ -581,7 +581,7 @@ $.fn.xeSortableTable = function(){
// get offsets of all list-item elements
offsets = [];
$table.find('tbody>tr:not([target],.sticky)').each(function() {
$table.find('tbody>tr:not([target],.sticky,:hidden)').each(function() {
var $this = $(this), o;
o = getOffset(this, $table.get(0));