I'm trying to set up the SC html 5 api located here:
http://w.soundcloud.com/player/api.js
However it is throwing a "c is undefined" error (7 times) in Firebug.
After a bit of digging it seems that the these errors only show up if I am loading the Facebook JS asynchronously like this:
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=137624476258287";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
The api.js and the facebook.js both seem to be using function wrappers, yet FB is causing soundcloud to error out.
I've added my solution below, also this error might show up not just for Facebook, but for any application that uses HTML5 messaging, so this is a general fix for all those as well.