mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-04 16:45:08 -05:00
Wire up the xmpp jingle action
This commit is contained in:
parent
0f7587c6bb
commit
888fd4ffce
@ -1,4 +1,4 @@
|
||||
/*global $*/
|
||||
/*global $, app*/
|
||||
"use strict";
|
||||
|
||||
var _ = require('underscore');
|
||||
@ -35,23 +35,36 @@ module.exports = HumanView.extend({
|
||||
return this;
|
||||
},
|
||||
handleAnswerClick: function (e) {
|
||||
|
||||
e.preventDefault();
|
||||
var self = this;
|
||||
app.api.jingle.startLocalMedia(null, function () {
|
||||
self.model.jingleSession.accept();
|
||||
self.model.state = 'active';
|
||||
});
|
||||
return false;
|
||||
},
|
||||
handleIgnoreClick: function (e) {
|
||||
|
||||
e.preventDefault();
|
||||
this.model.jingleSession.end({
|
||||
condition: 'decline'
|
||||
});
|
||||
return false;
|
||||
},
|
||||
handleCancelClick: function (e) {
|
||||
|
||||
e.preventDefault();
|
||||
this.model.jingleSession.end({
|
||||
condition: 'cancel'
|
||||
});
|
||||
return false;
|
||||
},
|
||||
handleEndClick: function (e) {
|
||||
|
||||
e.preventDefault();
|
||||
this.model.jingleSession.end({
|
||||
condition: 'success'
|
||||
});
|
||||
return false;
|
||||
},
|
||||
handleMuteClick: function (e) {
|
||||
|
||||
return false;
|
||||
},
|
||||
// we want to make sure we show the appropriate buttons
|
||||
|
@ -23,7 +23,7 @@
|
||||
"templatizer": "0.1.2",
|
||||
"underscore": "1.5.1",
|
||||
"raf-component": "1.1.1",
|
||||
"stanza.io": "2.5.10",
|
||||
"stanza.io": "2.5.12",
|
||||
"notify.js": "0.0.3",
|
||||
"wildemitter": "0.0.5",
|
||||
"attachmediastream": "",
|
||||
|
Loading…
Reference in New Issue
Block a user