- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
{ // more code...
/**
* Sets snapshot auto sharing on facebook
* @param {Object} key
* @param {Object} value
*/
setAutoShare: function(key, value) {
if (value) {
this.api.askPermissions("publish_stream", function(list) {
if (list == null || list.indexOf("publish_stream") < 0){
this.vr.dom.round.setAutoShare(key, false);
} else {
this.vr.dom.round.setAutoShare(key, true);
var request = new Request({
method:'post',
data: "env=facebook&"+ key + "=true&widgetSessionId=" + this.conf.pysid,
url: this.conf.baseUrl + "/set/auto-share",
onSuccess: function() {
this.vr.dom.round.setAutoShare(key, true);
}.bind(this)
}).send();
}
}.bind(this));
} else {
var request = new Request({
method: "post",
url: this.conf.baseUrl + "/set/auto-share",
data: "env=facebook&"+ key + "=false&widgetSessionId=" + this.conf.pysid,
onSuccess: function() {
this.vr.dom.round.setAutoShare(key, false);
}.bind(this),
onFailure: function() {}
}).send();
}
},
// more code
}
Горе от ума. Хотя, на самом деле "от ума" тут спорно, человек дошел до того, чтобы научится пользоваться каким-то фреймворком, и даже пытался написать комментарий...
Комментарии (0) RSS
Добавить комментарий