FS-10654: [verto] implementing replace prototype in verto dialog

This commit is contained in:
Victor Torres 2017-09-08 11:08:44 -03:00
parent bda523b5af
commit 67dad06398
No known key found for this signature in database
GPG Key ID: 1A2126E93176CDD6
1 changed files with 11 additions and 0 deletions

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;