Index: trunk/extensions/LiquidThreads/lqt.css |
— | — | @@ -462,3 +462,6 @@ |
463 | 463 | background-color: #eeeeee; |
464 | 464 | } |
465 | 465 | |
| 466 | +.lqt-edit-form { |
| 467 | + margin-top: 1em; |
| 468 | +} |
Index: trunk/extensions/LiquidThreads/lqt.js |
— | — | @@ -306,7 +306,14 @@ |
307 | 307 | newThreadLink.click( liquidThreads.handleNewLink ); |
308 | 308 | } |
309 | 309 | |
310 | | - $j('div.lqt-edit-form').each( function() { this.style.display = 'none'; } ); |
| 310 | + $j('div.lqt-edit-form').each( |
| 311 | + function() { |
| 312 | + if ( this.find('#wpTextbox1').length ) { |
| 313 | + return; |
| 314 | + } |
| 315 | + |
| 316 | + this.style.display = 'none'; |
| 317 | + } ); |
311 | 318 | |
312 | 319 | // Move menus into their proper location |
313 | 320 | $j('div.lqt-post-wrapper').each( liquidThreads.setupMenus ); |