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

Modified Files:
        dynlayer.js 
Log Message:
Added setHTML noevt paramater so you can make calls to setHTML without firing events.

Index: dynlayer.js
===================================================================
RCS file: /cvsroot/dynapi/dynapi/src/lib/dynapi/api/dynlayer.js,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** dynlayer.js 2001/01/06 10:41:18     1.6
--- dynlayer.js 2001/01/06 20:48:26     1.7
***************
*** 427,431 ****
        return this.bgColor;
  };
! DynLayer.prototype.setHTML=function(html) {
        this.html=html?html:'';
        if (this.css==null) return;
--- 427,431 ----
        return this.bgColor;
  };
! DynLayer.prototype.setHTML=function(html,noevt) {
        this.html=html?html:'';
        if (this.css==null) return;
***************
*** 452,457 ****
                }
        }
!     
!     this.invokeEvent("load");
  };
  DynLayer.prototype.getHTML=function() {
--- 452,456 ----
                }
        }
!     if (noevt!=false) this.invokeEvent("load");
  };
  DynLayer.prototype.getHTML=function() {


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

Reply via email to