Changeset 1285
- Timestamp:
- 01/18/08 07:43:07 (23 months ago)
- Files:
-
- 1 modified
-
branches/release-28/mt-static/mt.js (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-28/mt-static/mt.js
r1280 r1285 1487 1487 DOM.addClassName( flyout, "hidden" ); 1488 1488 this.openFlyouts.remove( es[ i ] ); 1489 show DropDown();1489 showAllDropDown(); 1490 1490 } 1491 1491 } … … 1532 1532 this.targetElement = null; 1533 1533 1534 hideDropDown(); 1534 hideAllDropDown(); 1535 showDropDown( el ); 1535 1536 this.openFlyouts.add( name ); 1536 1537 … … 2246 2247 2247 2248 /* actually hides select boxes, not the dropdown */ 2248 hide DropDown();2249 hideAllDropDown(); 2249 2250 this.inTimer = null; 2250 2251 this.outTimer = null; … … 2265 2266 2266 2267 /* actually shows select boxes, not the dropdown */ 2267 show DropDown();2268 showAllDropDown(); 2268 2269 this.outTimer = null; 2269 2270 this.inTimer = null; … … 2810 2811 } 2811 2812 2812 function hide DropDown() { // hides SELECT lists under the nav on IE62813 function hideAllDropDown() { // hides SELECT lists under the nav on IE6 2813 2814 if((/MSIE/.test(navigator.userAgent)) && parseInt(navigator.appVersion)==4) { 2814 2815 var dd = document.getElementsByTagName('select'); … … 2820 2821 } 2821 2822 2822 function show DropDown() {2823 function showAllDropDown() { 2823 2824 if ((/MSIE/.test(navigator.userAgent)) && parseInt(navigator.appVersion)==4) { 2824 2825 var dd = document.getElementsByTagName('select'); … … 2828 2829 } 2829 2830 return; 2831 } 2832 2833 function showDropDown(el) { 2834 if ((/MSIE/.test(navigator.userAgent)) && parseInt(navigator.appVersion)==4) { 2835 var dd = el.getElementsByTagName( "select" ); 2836 for ( var i = 0; i < dd.length; i++ ) { 2837 dd[i].style.visibility = 'visible'; 2838 } 2839 } 2840 return; 2830 2841 } 2831 2842
