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 Camino
master
Neil Bowers 2012-01-19 15:15:26 +00:00
parent 914e7f2636
commit 97bbe6e0b0
1 changed files with 2 additions and 2 deletions

View File

@ -184,8 +184,8 @@
// Draw the horizontal lines
var $linesRow = $("<tr/>");
$childNodes.each(function() {
var $left = $("<td/>").addClass("line left top");
var $right = $("<td/>").addClass("line right top");
var $left = $("<td>&nbsp;</td>").addClass("line left top");
var $right = $("<td>&nbsp;</td>").addClass("line right top");
$linesRow.append($left).append($right);
});