Skip to content

Commit

Permalink
remove 'views' argument from UA.call()
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillan committed Mar 18, 2013
1 parent d6bcdd0 commit 622f46a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/UA.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,11 @@ UA.prototype.isConnected = function() {
* @throws {TypeError}
*
*/
UA.prototype.call = function(target, views, options) {
UA.prototype.call = function(target, options) {
var session;

session = new JsSIP.RTCSession(this);
session.connect(target, views, options);
session.connect(target, options);
};

/**
Expand Down

0 comments on commit 622f46a

Please sign in to comment.