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

Commit

Permalink
Fixing build for binding for Issue #519
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpodwysocki committed Jan 28, 2015
1 parent dd39a78 commit fe00014
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
5 changes: 2 additions & 3 deletions dist/rx.binding.js
Expand Up @@ -49,9 +49,8 @@

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

/**
* Multicasts the source sequence notifications through an instantiated subject into all uses of the sequence within a selector function. Each
Expand Down
2 changes: 1 addition & 1 deletion dist/rx.binding.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fe00014

Please sign in to comment.