Changeset 582
- Timestamp:
- 09/20/06 21:36:47 (7 years ago)
- Location:
- trunk/plugins/Linker
- Files:
-
- 2 modified
-
dTree/dtree.css (modified) (1 diff)
-
linker.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/Linker/dTree/dtree.css
r1 r582 15 15 vertical-align: middle; 16 16 } 17 .dtree a {17 .dtree a,.dtree a:visited { 18 18 color: #333; 19 19 text-decoration: none; -
trunk/plugins/Linker/linker.js
r581 r582 214 214 } 215 215 p.removeChild(a); 216 linker.editor.updateToolbar(); 217 return; 216 218 } 217 219 } … … 252 254 { 253 255 // Found one. 254 for(var iin atr)256 for(var j in atr) 255 257 { 256 a.setAttribute( i, atr[i]);258 a.setAttribute(j, atr[j]); 257 259 } 258 260 } 259 261 } 260 262 } 263 linker.editor.selectNodeContents(a); 264 linker.editor.updateToolbar(); 261 265 }; 262 266 … … 520 524 521 525 //if no anchors found completely hide Anchor-Link 522 if(anchor. childNodes.length==0) {526 if(anchor.length==0) { 523 527 this.dialog.getElementById('anchorfieldset').style.display = "none"; 524 528 }
