Merge branch 'video' of github.com:andyet/otalk into video

This commit is contained in:
Henrik Joreteg 2013-10-15 20:06:25 -07:00
commit 8b0c96f654
2 changed files with 20 additions and 7 deletions

View File

@ -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

View File

@ -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": "",