Changeset 1640:8a85e01f92b6
- Timestamp:
- 08/20/13 00:53:23 (12 years ago)
- Branch:
- Ticket #1550
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/_posts_list.js
r1639 r1640 88 88 line.parentNode.insertBefore(tr,line.nextSibling); 89 89 } 90 else if (tr .style.display == 'none' && ( action == 'toggle' || action == 'open' ) )90 else if (tr && tr.style.display == 'none' && ( action == 'toggle' || action == 'open' ) ) 91 91 { 92 92 $(tr).css('display', 'table-row'); … … 95 95 img.alt = dotclear.img_minus_alt; 96 96 } 97 else if (tr .style.display != 'none' && ( action == 'toggle' || action == 'close' ) )97 else if (tr && tr.style.display != 'none' && ( action == 'toggle' || action == 'close' ) ) 98 98 { 99 99 $(tr).css('display', 'none');
Note: See TracChangeset
for help on using the changeset viewer.