mirror of
https://github.com/typecho/typecho.git
synced 2025-03-25 12:29:43 +01:00
Merge branch 'master' of https://github.com/typecho/typecho-replica
This commit is contained in:
commit
be0a46e561
@ -243,6 +243,15 @@ jQuery.tableDnD = {
|
||||
};
|
||||
// Now make the rows draggable
|
||||
jQuery.tableDnD.makeDraggable(this);
|
||||
|
||||
// fix chrome border bug
|
||||
if (0 == $('tfoot', this).length
|
||||
&& 0 < $('thead', this).length) {
|
||||
var h = $('thead', this), count = $('th', h).length;
|
||||
|
||||
$('<tfoot><tr><td colspan="' + count
|
||||
+ '"></td></tr></tfoot>').insertAfter(h);
|
||||
}
|
||||
});
|
||||
|
||||
// Now we need to capture the mouse up and mouse move event
|
||||
|
Loading…
x
Reference in New Issue
Block a user