Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
RequireJS is a JavaScript file and module loader. It is optimized for in-browser use, but it can be used in other JavaScript environments, like Rhino and Node.
0
votes
0answers
39 views
Facebook canvas won't load my requireJS / BackboneJS app
Anyone have any idea why Facebook Canvas won't execute my requireJS init script?
<script data-main="/js/app.js" src="/js/components/requirejs/require.js"></script>
app.js is the core of ...
0
votes
2answers
989 views
Uncaught TypeError: Cannot call method 'shift' of null
I'm only getting this message in Chrome. Firefox works just fine. I've been debugging trying to find at what point this error is happening and can't seem to nail it down. The exact message is, ...
0
votes
1answer
284 views
Optimizing and loading external dependencies with requirejs
I have a module that requires the Facebook SDK. I'm wondering how I should configure loading of the SDK so that it's handled properly by the RequireJS optimizer.
In app:
require.config({
paths: {
...
10
votes
3answers
2k views
using require.js with FB SDK
I would like to load FB SDK using require.js.
my test case is something like this:
test.js:
require([
'libs/facebook/fb'
], function(FB){
FB.api("/me", function(){});
));
I ...