-
Notifications
You must be signed in to change notification settings - Fork 0
/
hangout-wrapper.js
56 lines (56 loc) · 1.78 KB
/
hangout-wrapper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// var hangoutWrapper = function(gapi) {
//
// var addOnNewParticipantCallback = function(f) {
// gapi.hangout.onParticipantsAdded.add(f);
// };
//
// var addOnStateChangedCallback = function(f) {
// gapi.hangout.data.onStateChanged.add(f);
// };
//
// var isHangoutApiReady = function() {
// return gapi.hangout.isApiReady();
// };
//
// var addOnApiReadyCallback = function(f) {
// gapi.hangout.onApiReady.add(f);
// };
//
// var setup = function(newParticipantJoined, stateChanged, init) {
// addOnNewParticipantCallback(newParticipantJoined);
// addOnStateChangedCallback(stateChanged);
// init();
// };
//
// return {
// start: function(newParticipantJoined, stateChanged, init) {
// if (isHangoutApiReady()) {
// setup();
// }
// else {
// addOnApiReadyCallback(setup);
// }
// },
//
// getParticipants: function() {
// return gapi.hangout.getParticipants();
//
// },
// getLocalParticipant: function() {
// return gapi.hangout.getLocalParticipant();
// },
// setParticipantStatus: function(participantStatusHistories) {
// var delta = {};
// for (p in participantStatusHistories) {
// delta[p] = participantStatusHistories[p].join(",");
// }
// return gapi.hangout.data.submitDelta(delta);
// },
// clearParticipantStatus: function(participantId) {
// return gapi.hangout.data.clearValue(participantId);
// },
// displayNotice: function(message) {
// gapi.hangout.layout.displayNotice(message);
// },
// };
// };