Update of /cvsroot/dynapi/dynapi/src/lib/dynapi/api
In directory usw-pr-cvs1:/tmp/cvs-serv24181

Modified Files:
        dynlayer.js 
Log Message:
fixed a few semicolons I had removed by accident in the setWidth() and setHeight() 
methods

Index: dynlayer.js
===================================================================
RCS file: /cvsroot/dynapi/dynapi/src/lib/dynapi/api/dynlayer.js,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** dynlayer.js 2001/01/17 19:01:15     1.15
--- dynlayer.js 2001/01/18 18:08:17     1.16
***************
*** 453,458 ****
  };
  DynLayer.prototype.setWidth=function(w,noevt) {
!       this.w=(w==null)?this.w:w<0?0:w
!       if (this.w==null) return
        if (this.css!=null) {
                if (is.ns4) this.css.clip.width = this.w;
--- 453,458 ----
  };
  DynLayer.prototype.setWidth=function(w,noevt) {
!       this.w=(w==null)?this.w:w<0?0:w;
!       if (this.w==null) return;
        if (this.css!=null) {
                if (is.ns4) this.css.clip.width = this.w;
***************
*** 465,470 ****
  };
  DynLayer.prototype.setHeight=function(h,noevt) {
!       this.h=(h==null)?this.h:h<0?0:h
!       if (this.h==null) return
        if (this.css!=null) {
                if (is.ns4) this.css.clip.height = this.h;
--- 465,470 ----
  };
  DynLayer.prototype.setHeight=function(h,noevt) {
!       this.h=(h==null)?this.h:h<0?0:h;
!       if (this.h==null) return;
        if (this.css!=null) {
                if (is.ns4) this.css.clip.height = this.h;


_______________________________________________
Dynapi-CVS mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-cvs

Reply via email to