Skip to content

Commit

Permalink
Revision v600290
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwaddington committed Jul 30, 2012
1 parent 8aa0756 commit 2a40378
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions all.js
Original file line number Diff line number Diff line change
Expand Up @@ -841,17 +841,20 @@ window.FB || function() {
if(u.special & f) {
i(t)
}
var v = c[t];
var v = c[t], w = [];
if(v) {
delete c[t];
for(var w in v) {
if(h.call(v, w)) {
if(!--b[w].waiting) {
p(w)
for(var x in v) {
if(h.call(v, x)) {
if(!--b[x].waiting) {
w.push(x)
}
}
}
}
for(var y = 0;y < w.length;y++) {
p(w[y])
}
}
function q(t, u) {
b[t] = {id:t};
Expand Down Expand Up @@ -1732,6 +1735,7 @@ window.FB || function() {
o.warn("The method FB.%s is not officially supported by " + "Facebook and access to it will soon be removed.", ia);
if(!w.hasOwnProperty(ia)) {
n.log(s._apiKey, n.TYPE.WARNING, n.CATEGORY.DEPRECATED, "FB." + ia);
p.log("jssdk_error", {appId:s._apiKey, error:"Private method used", extra:{args:ia}});
w[ia] = true
}
}
Expand Down Expand Up @@ -1821,7 +1825,7 @@ window.FB || function() {
return document.getElementById(da)
}, dotAccess:j, applyWithGuard:h, safeEval:l});
if(t) {
k(t, {provide:y, Insights:n})
k(t, {provide:y})
}
e.exports = s
});
Expand Down

0 comments on commit 2a40378

Please sign in to comment.