Removes unused, duplicate code method.

pull/184/merge 225
Damian Minkov 10 years ago
parent 1602af0229
commit b35e8aaf93
  1. 22
      app.js

@ -1477,28 +1477,6 @@ function setView(viewName) {
// }
}
function hangUp() {
if (connection && connection.connected) {
// ensure signout
$.ajax({
type: 'POST',
url: config.bosh,
async: false,
cache: false,
contentType: 'application/xml',
data: "<body rid='" + (connection.rid || connection._proto.rid) + "' xmlns='http://jabber.org/protocol/httpbind' sid='" + (connection.sid || connection._proto.sid) + "' type='terminate'><presence xmlns='jabber:client' type='unavailable'/></body>",
success: function (data) {
console.log('signed out');
console.log(data);
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
console.log('signout error', textStatus + ' (' + errorThrown + ')');
}
});
}
disposeConference(true);
}
$(document).bind('fatalError.jingle',
function (event, session, error)
{

Loading…
Cancel
Save