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

Modified Files:
        layer.js 
Log Message:
Removed call to getComponenet

Index: layer.js
===================================================================
RCS file: /cvsroot/dynapi/dynapi/src/lib/dynapi/ext/layer.js,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** layer.js    2001/02/04 20:03:24     1.4
--- layer.js    2001/03/25 07:34:37     1.5
***************
*** 33,39 ****
  DynLayer.prototype.getTopZIndex=function() {
      if(!this.origZIndex||typeof(this.origZIndex)!="number") 
this.origZIndex=this.getZIndex();
!     n=1;
      for (var i in this.parent.children) {
!         child=this.parent.children[i].getComponent();
          z=child.getZIndex();
          if (n<=z) n=z+5;
--- 33,39 ----
  DynLayer.prototype.getTopZIndex=function() {
      if(!this.origZIndex||typeof(this.origZIndex)!="number") 
this.origZIndex=this.getZIndex();
!     var n=1,child,z;
      for (var i in this.parent.children) {
!         child=this.parent.children[i];
          z=child.getZIndex();
          if (n<=z) n=z+5;


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

Reply via email to