Changeset 2820 for lang/javascript/jsdeferred
- Timestamp:
- 12/08/07 01:52:27 (13 months ago)
- Location:
- lang/javascript/jsdeferred/trunk
- Files:
-
- 5 modified
-
jsdeferred.jquery.js (modified) (1 diff)
-
jsdeferred.js (modified) (1 diff)
-
jsdeferred.mini.js (modified) (1 diff)
-
jsdeferred.nodoc.js (modified) (1 diff)
-
jsdeferred.userscript.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/javascript/jsdeferred/trunk/jsdeferred.jquery.js
r2817 r2820 4 4 Deferred.prototype={ 5 5 init:function(){ 6 this. callback={6 this._next=null;this.callback={ 7 7 ok:function(x){return x}, 8 8 ng:function(x){throw x} 9 }; this._next=null;return this;},9 };return this;}, 10 10 next:function(fun){return this._post("ok",fun)}, 11 11 error:function(fun){return this._post("ng",fun)}, -
lang/javascript/jsdeferred/trunk/jsdeferred.js
r2817 r2820 82 82 Deferred.prototype = { 83 83 init : function () { 84 this._next = null; 84 85 this.callback = { 85 86 ok: function (x) { return x }, 86 87 ng: function (x) { throw x } 87 88 }; 88 this._next = null;89 89 return this; 90 90 }, -
lang/javascript/jsdeferred/trunk/jsdeferred.mini.js
r2817 r2820 4 4 Deferred.prototype={ 5 5 init:function(){ 6 this. callback={6 this._next=null;this.callback={ 7 7 ok:function(x){return x}, 8 8 ng:function(x){throw x} 9 }; this._next=null;return this;},9 };return this;}, 10 10 next:function(fun){return this._post("ok",fun)}, 11 11 error:function(fun){return this._post("ng",fun)}, -
lang/javascript/jsdeferred/trunk/jsdeferred.nodoc.js
r2817 r2820 4 4 Deferred.prototype = { 5 5 init : function () { 6 this._next = null; 6 7 this.callback = { 7 8 ok: function (x) { return x }, 8 9 ng: function (x) { throw x } 9 10 }; 10 this._next = null;11 11 return this; 12 12 }, -
lang/javascript/jsdeferred/trunk/jsdeferred.userscript.js
r2817 r2820 8 8 Deferred.prototype = { 9 9 init : function () { 10 this._next = null; 10 11 this.callback = { 11 12 ok: function (x) { return x }, 12 13 ng: function (x) { throw x } 13 14 }; 14 this._next = null;15 15 return this; 16 16 },
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)