Show
Ignore:
Timestamp:
12/21/07 07:24:50 (13 months ago)
Author:
cho45
Message:

lang/javascript/jsdeferred/trunk/jsdeferred.mini.js,
lang/javascript/jsdeferred/trunk/jsdeferred.jquery.js,
lang/javascript/jsdeferred/trunk/jsdeferred.js,
lang/javascript/jsdeferred/trunk/jsdeferred.nodoc.js,
lang/javascript/jsdeferred/trunk/jsdeferred.userscript.js:

意味がなかったのでやめた。(つなぎかえのところでとぎれる)
parallel のキャンセラはそのまま

Location:
lang/javascript/jsdeferred/trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/jsdeferred/trunk/jsdeferred.jquery.js

    r3386 r3387  
    1313fail:function(err){return this._fire("ng",err)}, 
    1414cancel:function(){ 
    15 (this.canceller || function(){})();if(this._next)this._next.cancel();return this.init();}, 
     15(this.canceller || function(){})();return this.init();}, 
    1616_post:function(okng,fun){ 
    1717this._next=new Deferred();this._next.callback[okng]=fun;return this._next;}, 
  • lang/javascript/jsdeferred/trunk/jsdeferred.js

    r3386 r3387  
    9999        cancel : function () { 
    100100                (this.canceller || function () {})(); 
    101                 if (this._next) this._next.cancel(); 
    102101                return this.init(); 
    103102        }, 
  • lang/javascript/jsdeferred/trunk/jsdeferred.mini.js

    r3386 r3387  
    1313fail:function(err){return this._fire("ng",err)}, 
    1414cancel:function(){ 
    15 (this.canceller || function(){})();if(this._next)this._next.cancel();return this.init();}, 
     15(this.canceller || function(){})();return this.init();}, 
    1616_post:function(okng,fun){ 
    1717this._next=new Deferred();this._next.callback[okng]=fun;return this._next;}, 
  • lang/javascript/jsdeferred/trunk/jsdeferred.nodoc.js

    r3386 r3387  
    1919        cancel : function () { 
    2020                (this.canceller || function () {})(); 
    21                 if (this._next) this._next.cancel(); 
    2221                return this.init(); 
    2322        }, 
  • lang/javascript/jsdeferred/trunk/jsdeferred.userscript.js

    r3386 r3387  
    2323        cancel : function () { 
    2424                (this.canceller || function () {})(); 
    25                 if (this._next) this._next.cancel(); 
    2625                return this.init(); 
    2726        },