##// 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 //-- debut ajout ci ----
517 //-- debut ajout ci ----
518 function cicacheselect(){
518 function cicacheselect(){
519 if (browser.isIE) {
519 if (browser.isIE && browser.version < 7) {
520 oSelects = document.getElementsByTagName('SELECT');
520 oSelects = document.getElementsByTagName('SELECT');
521 if (oSelects.length > 0) {
521 if (oSelects.length > 0) {
522 for (i = 0; i < oSelects.length; i++) {
522 for (i = 0; i < oSelects.length; i++) {
@@ -535,7 +535,7 function cicacheselect(){
535 }
535 }
536
536
537 function cimontreselect(){
537 function cimontreselect(){
538 if (browser.isIE) {
538 if (browser.isIE && browser.version < 7) {
539 oSelects = document.getElementsByTagName('SELECT');
539 oSelects = document.getElementsByTagName('SELECT');
540 if (oSelects.length > 0) {
540 if (oSelects.length > 0) {
541 for (i = 0; i < oSelects.length; i++) {
541 for (i = 0; i < oSelects.length; i++) {
General Comments 0
You need to be logged in to leave comments. Login now