Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "ck-array", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "A simple observable array for JavaScript Frameworks", | ||
@@ -5,0 +5,0 @@ "main": "src/ckArray.js", |
@@ -24,3 +24,3 @@ // Generated by CoffeeScript 1.9.1 | ||
var ref; | ||
return (ref = observer.prePush) != null ? ref.apply(null, args) : void 0; | ||
return (ref = observer.prePush) != null ? ref.apply(this, args) : void 0; | ||
}); | ||
@@ -30,3 +30,3 @@ result = Array.prototype.push.call(this, args); | ||
var ref; | ||
return (ref = observer.postPush) != null ? ref.apply(null, args) : void 0; | ||
return (ref = observer.postPush) != null ? ref.apply(this, args) : void 0; | ||
}); | ||
@@ -40,3 +40,3 @@ return result; | ||
var ref; | ||
return (ref = observer.preSplice) != null ? ref.apply(null, args) : void 0; | ||
return (ref = observer.preSplice) != null ? ref.apply(this, args) : void 0; | ||
}); | ||
@@ -46,3 +46,3 @@ result = Array.prototype.splice.apply(this, args); | ||
var ref; | ||
return (ref = observer.postSplice) != null ? ref.call(null, result) : void 0; | ||
return (ref = observer.postSplice) != null ? ref.call(this, result) : void 0; | ||
}); | ||
@@ -56,3 +56,3 @@ return result; | ||
var ref; | ||
return (ref = observer.preSlice) != null ? ref.apply(null, args) : void 0; | ||
return (ref = observer.preSlice) != null ? ref.apply(this, args) : void 0; | ||
}); | ||
@@ -62,3 +62,3 @@ result = Array.prototype.slice.apply(this, args); | ||
var ref; | ||
return (ref = observer.postSlice) != null ? ref.call(null, result) : void 0; | ||
return (ref = observer.postSlice) != null ? ref.call(this, result) : void 0; | ||
}); | ||
@@ -65,0 +65,0 @@ return result; |
Sorry, the diff of this file is not supported yet