From: Anthony Minessale Date: Wed, 11 Mar 2015 20:26:10 +0000 (-0500) Subject: fix typo X-Git-Tag: v1.4.18~1^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=698f03eac23f2a1d52ea3035ed4c18b83581e321;p=thirdparty%2Ffreeswitch.git fix typo --- diff --git a/html5/verto/js/src/jquery.verto.js b/html5/verto/js/src/jquery.verto.js index 9bb5e02ceb..750b05a8e5 100644 --- a/html5/verto/js/src/jquery.verto.js +++ b/html5/verto/js/src/jquery.verto.js @@ -1745,7 +1745,7 @@ $.verto.dialog.prototype.transfer = function(dest, params) { var dialog = this; if (dest) { - cur_call.sendMethod("verto.modify", { + dialog.sendMethod("verto.modify", { action: "transfer", destination: dest, params: params @@ -1756,7 +1756,7 @@ $.verto.dialog.prototype.hold = function(params) { var dialog = this; - cur_call.sendMethod("verto.modify", { + dialog.sendMethod("verto.modify", { action: "hold", params: params }); @@ -1765,7 +1765,7 @@ $.verto.dialog.prototype.unhold = function(params) { var dialog = this; - cur_call.sendMethod("verto.modify", { + dialog.sendMethod("verto.modify", { action: "unhold", params: params }); @@ -1774,7 +1774,7 @@ $.verto.dialog.prototype.toggleHold = function(params) { var dialog = this; - cur_call.sendMethod("verto.modify", { + dialog.sendMethod("verto.modify", { action: "toggleHold", params: params });