Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

call.hangup() код

Code Block
languagejs

$("#callBtn").text("Hangup").removeClass("btn-success").addClass("btn-danger").off('click').click(function(){
$(this).prop('disabled', true);
outCall.hangup();
}).prop('disabled', false);

...