Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit fe00014

Browse files
Fixing build for binding for Issue #519
1 parent dd39a78 commit fe00014

4 files changed

Lines changed: 6 additions & 8 deletions

File tree

dist/rx.binding.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,8 @@
4949

5050
// Utilities
5151
var objectDisposed = 'Object has been disposed';
52-
function checkDisposed() {
53-
if (this.isDisposed) { throw new Error(objectDisposed); }
54-
}
52+
function checkDisposed(self) { if (self.isDisposed) { throw new Error(objectDisposed); } }
53+
function cloneArray(arr) { for(var a = [], i = 0, len = arr.length; i < len; i++) { a.push(arr[i]); } return a;}
5554

5655
/**
5756
* Multicasts the source sequence notifications through an instantiated subject into all uses of the sequence within a selector function. Each

dist/rx.binding.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)