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:
parent
0759212a44
commit
10a49d476d
|
@ -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++) {
|
||||
|
|
Loading…
Reference in New Issue