HTML select tags are no longer hidden with IE7 when showing navigation drop-down menu.

They are still hidden for IE6 (no z-index support for select tags).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@500 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2007-05-02 17:31:42 +00:00
parent 0759212a44
commit 10a49d476d
1 changed files with 2 additions and 2 deletions

View File

@ -516,7 +516,7 @@ function getPageOffsetTop(el) {
//-- debut ajout ci ----
function cicacheselect(){
if (browser.isIE) {
if (browser.isIE && browser.version < 7) {
oSelects = document.getElementsByTagName('SELECT');
if (oSelects.length > 0) {
for (i = 0; i < oSelects.length; i++) {
@ -535,7 +535,7 @@ function cicacheselect(){
}
function cimontreselect(){
if (browser.isIE) {
if (browser.isIE && browser.version < 7) {
oSelects = document.getElementsByTagName('SELECT');
if (oSelects.length > 0) {
for (i = 0; i < oSelects.length; i++) {