Changeset 6713
- Timestamp:
- 09/21/08 13:20:31 (2 years ago)
- Files:
-
- 1 modified
-
trunk/interface/owner/setting/filter/index.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/setting/filter/index.php
r6712 r6713 56 56 <div class="filtering-words"> 57 57 <table cellpadding="0" cellspacing="0"> 58 <tbody id="filterbox-<?php echo $mode;?>" >58 <tbody id="filterbox-<?php echo $mode;?>"<?php echo (empty($filtersList) ? ' class="empty"' : '');?>> 59 59 <?php 60 60 if ($filtersList) { … … 129 129 tr.appendChild(td); 130 130 parent.appendChild(tr); 131 parent.className = "empty"; 131 132 } 132 133 } … … 204 205 caller = document.getElementById(callerId); 205 206 206 // if(caller.rows.length == 1) {207 if((caller.rows.length == 1) && (caller.className == "empty")) { 207 208 // TODO : Case for EMPTY -> ADD -> DELETE -> ADD.. 208 //caller.removeChild(caller);209 //}209 caller.removeChild(caller); 210 } 210 211 var tr = document.createElement("tr"); 211 212 tr.className = "odd-line inactive-class";
