mirror of
https://github.com/redmine/redmine.git
synced 2025-11-16 10:16:03 +01:00
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:
@@ -516,7 +516,7 @@ function getPageOffsetTop(el) {
|
|||||||
|
|
||||||
//-- debut ajout ci ----
|
//-- debut ajout ci ----
|
||||||
function cicacheselect(){
|
function cicacheselect(){
|
||||||
if (browser.isIE) {
|
if (browser.isIE && browser.version < 7) {
|
||||||
oSelects = document.getElementsByTagName('SELECT');
|
oSelects = document.getElementsByTagName('SELECT');
|
||||||
if (oSelects.length > 0) {
|
if (oSelects.length > 0) {
|
||||||
for (i = 0; i < oSelects.length; i++) {
|
for (i = 0; i < oSelects.length; i++) {
|
||||||
@@ -535,7 +535,7 @@ function cicacheselect(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function cimontreselect(){
|
function cimontreselect(){
|
||||||
if (browser.isIE) {
|
if (browser.isIE && browser.version < 7) {
|
||||||
oSelects = document.getElementsByTagName('SELECT');
|
oSelects = document.getElementsByTagName('SELECT');
|
||||||
if (oSelects.length > 0) {
|
if (oSelects.length > 0) {
|
||||||
for (i = 0; i < oSelects.length; i++) {
|
for (i = 0; i < oSelects.length; i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user