fix: Calendar feed list doesn't display in IE
This commit is contained in:
parent
d566d0db8c
commit
6ea2472695
2 changed files with 8 additions and 1 deletions
|
|
@ -489,7 +489,11 @@ sub getEditForm {
|
|||
for (var i = 0; i < cells.length; i++)
|
||||
row.appendChild(cells[i]);
|
||||
|
||||
table.appendChild(row);
|
||||
var tbody = table.getElementsByTagName('tbody')[0];
|
||||
if (tbody)
|
||||
tbody.appendChild(row);
|
||||
else
|
||||
table.appendChild(row);
|
||||
FeedsManager.updateFeed(table.getAttribute("id"),rowId);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue