Ignore:
Timestamp:
07/06/08 08:55:55 (4 years ago)
Author:
hverton
Message:

more fixed to the code block fold-out. Style sheet adjusted, line numbers right-aligned, made sure the options line under the block is the same width as the code block

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/templates/forum.viewthread.tpl

    r1526 r1527  
    2222function flipOverflow(who) { 
    2323    var tmp; 
    24     var status; 
    25     if (document.images['b_' + who].src.indexOf('_on') == -1) {  
    26         tmp = document.images['b_' + who].src.replace('_off', '_on'); 
     24    if (document.images['b_' + who].src.indexOf('right.gif') == -1) { 
     25        tmp = document.images['b_' + who].src.replace('left.gif', 'right.gif'); 
    2726        document.getElementById('box_' + who).style.overflowX = 'hidden'; 
    2827        document.getElementById('box_' + who).style.overflow = 'hidden'; 
    2928    } else {  
    30         tmp = document.images['b_' + who].src.replace('_on', '_off'); 
     29        tmp = document.images['b_' + who].src.replace('right.gif', 'left.gif'); 
    3130        if (BrowserDetect.browser == "Explorer") { 
    3231            document.getElementById('box_' + who).style.overflowX = 'scroll'; 
Note: See TracChangeset for help on using the changeset viewer.