Letractively / aost

Automatically exported from code.google.com/p/aost
Other
1 stars 0 forks source link

seems the direct attribute is not correct sometimes in Trump, Fix in Trump 0.8.0 #249

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago

http://groups.google.com/group/tellurium-users/browse_thread/thread/248d9d7581a2
c2ef

Original issue reported on code.google.com by John.Jian.Fang@gmail.com on 19 Aug 2009 at 2:38

GoogleCodeExporter commented 8 years ago

Original comment by John.Jian.Fang@gmail.com on 19 Aug 2009 at 2:38

GoogleCodeExporter commented 8 years ago

Original comment by John.Jian.Fang@gmail.com on 1 Oct 2009 at 7:44

GoogleCodeExporter commented 8 years ago

Original comment by John.Jian.Fang@gmail.com on 5 Oct 2009 at 11:55

GoogleCodeExporter commented 8 years ago

Original comment by John.Jian.Fang@gmail.com on 19 Apr 2010 at 7:22

GoogleCodeExporter commented 8 years ago

Original comment by John.Jian.Fang@gmail.com on 8 May 2010 at 2:01

GoogleCodeExporter commented 8 years ago

Original comment by John.Jian.Fang@gmail.com on 25 Jun 2010 at 2:55

GoogleCodeExporter commented 8 years ago
NodeObject.prototype.checkUiDirectAttribute = function(){
    if(this.children.length > 0){
        teJQuery(this.domNode).data("uid", this.id);
        for(var i=0; i<this.children.length; i++){
            var $child = teJQuery(this.children[i].domNode);
            var puid = $child.parent().data("uid");
            if(puid == this.id){
                this.children[i].uiobject.clocator.direct = true;
            }
        }
        teJQuery(this.domNode).removeData("uid");
    }
};

Original comment by John.Jian.Fang@gmail.com on 6 Jul 2010 at 3:24

GoogleCodeExporter commented 8 years ago
NodeObject.prototype.checkUiDirectAttribute = function(){
    if(this.children.length > 0){
        teJQuery(this.domNode).data("uid", this.id);
        for(var i=0; i<this.children.length; i++){
            var $child = teJQuery(this.children[i].domNode);
            var puid = $child.parent().data("uid");
            if(puid == this.id){
                this.children[i].uiobject.clocator.direct = true;
            }
        }
        teJQuery(this.domNode).removeData("uid");
    }
};

Original comment by John.Jian.Fang@gmail.com on 6 Jul 2010 at 3:25