From: Richard B. <ric...@us...> - 2001-10-14 15:37:08
|
Update of /cvsroot/dynapi/dynapi/src/lib/dynapi/api In directory usw-pr-cvs1:/tmp/cvs-serv11457 Modified Files: dynlayer.js Log Message: added a transparent gif, see bug 469907 Index: dynlayer.js =================================================================== RCS file: /cvsroot/dynapi/dynapi/src/lib/dynapi/api/dynlayer.js,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -r1.66 -r1.67 *** dynlayer.js 2001/08/14 17:58:47 1.66 --- dynlayer.js 2001/10/14 15:37:06 1.67 *************** *** 85,89 **** for (var i=0; i<l; i++) { var child=this.children[i]; ! if (is.ie) var elm=this.elm.all[child.id]; else var elm=this.doc.getElementById(child.id); child.elm=elm; --- 85,89 ---- for (var i=0; i<l; i++) { var child=this.children[i]; ! if (is.ie) var elm=this.elm.all[child.id]; else var elm=this.doc.getElementById(child.id); child.elm=elm; *************** *** 153,157 **** if (this.bgImage!=null) s+=' background-image:url('+this.bgImage+');' if (this.bgColor!=null) s+=' background-color:'+this.bgColor+';' ! if (is.ie55 && this.bgImage==null && this.html==null) s+=' background-image:url(javascript:null);' s+=' position:absolute;">'; if (this.html!=null) s+=this.html; --- 153,157 ---- if (this.bgImage!=null) s+=' background-image:url('+this.bgImage+');' if (this.bgColor!=null) s+=' background-color:'+this.bgColor+';' ! if (is.ie55 && this.bgImage==null && this.html==null) s+=' background-image:'+DynAPI.librarypath+'dynapi/images/common/transparent.gif' s+=' position:absolute;">'; if (this.html!=null) s+=this.html; *************** *** 321,325 **** if (this.w==null&&this.h==null) return; if (this.css!=null) { ! if (is.ns4) { this.css.clip.width = this.w; this.css.clip.height = this.h; --- 321,325 ---- if (this.w==null&&this.h==null) return; if (this.css!=null) { ! if (is.ns4) { this.css.clip.width = this.w; this.css.clip.height = this.h; |