Update of /cvsroot/dynapi/dynapi/src/lib/dynapi/api
In directory usw-pr-cvs1:/tmp/cvs-serv6027
Modified Files:
dynlayer.js
Log Message:
took out the if(this.z) test when setting the this.css.zIndex variable, this screwed
up the zIndex for NS4
Index: dynlayer.js
===================================================================
RCS file: /cvsroot/dynapi/dynapi/src/lib/dynapi/api/dynlayer.js,v
retrieving revision 1.68
retrieving revision 1.69
diff -C2 -r1.68 -r1.69
*** dynlayer.js 2001/10/14 18:28:55 1.68
--- dynlayer.js 2001/11/02 15:39:40 1.69
***************
*** 67,71 ****
if (this.bgImage!=null) this.setBgImage(this.bgImage);
if (this.clip) this.setClip(this.clip);
! if (this.z) this.css.zIndex=this.z;
this.css.visibility=this.visible? "inherit" : "hide";
for (var i=0;i<this.doc.images.length;i++) this.doc.images[i].lyrobj=this;
--- 67,71 ----
if (this.bgImage!=null) this.setBgImage(this.bgImage);
if (this.clip) this.setClip(this.clip);
! this.css.zIndex=this.z;
this.css.visibility=this.visible? "inherit" : "hide";
for (var i=0;i<this.doc.images.length;i++) this.doc.images[i].lyrobj=this;
***************
*** 418,420 ****
else return [0,this.w,this.h,0];
}
! };
\ No newline at end of file
--- 418,420 ----
else return [0,this.w,this.h,0];
}
! };
|