fix for IE7: horizontal lines don't appear unless you put a non-breaking space inside the relevant TD elements.
Still works fine on Safari, Chrome, IE8&9, Firefox, and Caminomaster
parent
914e7f2636
commit
97bbe6e0b0
|
@ -184,8 +184,8 @@
|
||||||
// Draw the horizontal lines
|
// Draw the horizontal lines
|
||||||
var $linesRow = $("<tr/>");
|
var $linesRow = $("<tr/>");
|
||||||
$childNodes.each(function() {
|
$childNodes.each(function() {
|
||||||
var $left = $("<td/>").addClass("line left top");
|
var $left = $("<td> </td>").addClass("line left top");
|
||||||
var $right = $("<td/>").addClass("line right top");
|
var $right = $("<td> </td>").addClass("line right top");
|
||||||
$linesRow.append($left).append($right);
|
$linesRow.append($left).append($right);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue