Merge pull request #1386 in FS/freeswitch from ~VICTORTORRES/freeswitch-fs-7445:bugfix/FS-10654 to master

* commit '67dad0639867bbc64fa404b30caad2889ea80899':
  FS-10654: [verto] implementing replace prototype in verto dialog
This commit is contained in:
Anthony Minessale II 2017-09-12 15:16:15 +00:00
commit 12fefdf79b

View File

@ -2441,6 +2441,17 @@
}
};
$.verto.dialog.prototype.replace = function(replaceCallID, params) {
var dialog = this;
if (replaceCallID) {
dialog.sendMethod("verto.modify", {
action: "replace",
replaceCallID: replaceCallID,
params: params
});
}
};
$.verto.dialog.prototype.hold = function(params) {
var dialog = this;