- Timestamp:
- 02/27/2006 12:19:24 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/basic/includes/pages/mynodes/mynodes_link_form_link.tpl
r120 r142 32 32 form.links__ssid.disabled = false 33 33 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 } 35 39 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 } 39 49 break 40 50 case 'ap': … … 48 58 t.rows[1].style.display = "none" 49 59 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 } 53 69 break 54 70 case 'client': … … 62 78 form.links__channel.value = '' 63 79 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 } 65 85 t.rows[3].style.display = "none" 66 86 t.rows[4].style.display = "none"
Note: See TracChangeset
for help on using the changeset viewer.
