##// END OF EJS Templates
HTML select tags are no longer hidden with IE7 when showing navigation drop-down menu....
Jean-Philippe Lang -
r497:10a49d476d93
parent child
Show More
@@ -516,7 +516,7 function getPageOffsetTop(el) {
516 516
517 517 //-- debut ajout ci ----
518 518 function cicacheselect(){
519 if (browser.isIE) {
519 if (browser.isIE && browser.version < 7) {
520 520 oSelects = document.getElementsByTagName('SELECT');
521 521 if (oSelects.length > 0) {
522 522 for (i = 0; i < oSelects.length; i++) {
@@ -535,7 +535,7 function cicacheselect(){
535 535 }
536 536
537 537 function cimontreselect(){
538 if (browser.isIE) {
538 if (browser.isIE && browser.version < 7) {
539 539 oSelects = document.getElementsByTagName('SELECT');
540 540 if (oSelects.length > 0) {
541 541 for (i = 0; i < oSelects.length; i++) {
General Comments 0
You need to be logged in to leave comments. Login now