Ignore:
Timestamp:
02/27/2006 12:19:24 AM (6 years ago)
Author:
cirrus
Message:

Forgot to update on changeset 141

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/templates/basic/includes/pages/mynodes/mynodes_link_form_link.tpl

    r120 r142  
    3232                        form.links__ssid.disabled = false 
    3333                        form.links__channel.disabled = false 
    34                         t.rows[1].style.display = "" 
     34                        try { 
     35                                t.rows[1].style.display = 'table-row'; 
     36                        } catch(e) { 
     37                                t.rows[1].style.display = 'block'; 
     38                        } 
    3539                        t.rows[2].style.display = "none" 
    36                         t.rows[3].style.display = "" 
    37                         t.rows[4].style.display = "" 
    38                         t.rows[5].style.display = "" 
     40                        try { 
     41                                t.rows[3].style.display = 'table-row'; 
     42                                t.rows[4].style.display = 'table-row'; 
     43                                t.rows[5].style.display = 'table-row'; 
     44                        } catch(e) { 
     45                                t.rows[3].style.display = 'block'; 
     46                                t.rows[4].style.display = 'block'; 
     47                                t.rows[5].style.display = 'block'; 
     48                        } 
    3949                        break 
    4050                case 'ap': 
     
    4858                        t.rows[1].style.display = "none" 
    4959                        t.rows[2].style.display = "none" 
    50                         t.rows[3].style.display = "" 
    51                         t.rows[4].style.display = "" 
    52                         t.rows[5].style.display = "" 
     60                        try { 
     61                                t.rows[3].style.display = 'table-row'; 
     62                                t.rows[4].style.display = 'table-row'; 
     63                                t.rows[5].style.display = 'table-row'; 
     64                        } catch(e) { 
     65                                t.rows[3].style.display = 'block'; 
     66                                t.rows[4].style.display = 'block'; 
     67                                t.rows[5].style.display = 'block'; 
     68                        } 
    5369                        break 
    5470                case 'client': 
     
    6278                        form.links__channel.value = '' 
    6379                        t.rows[1].style.display = "none" 
    64                         t.rows[2].style.display = "" 
     80                        try { 
     81                                t.rows[2].style.display = 'table-row'; 
     82                        } catch(e) { 
     83                                t.rows[2].style.display = "block"; 
     84                        } 
    6585                        t.rows[3].style.display = "none" 
    6686                        t.rows[4].style.display = "none" 
Note: See TracChangeset for help on using the changeset viewer.