Pegasus.js: Load data while still loading other scripts
1–3 of 3 posts
Re: Pegasus.js: Load data while still loading other scripts
#2Some thoughts:
- `then` doesn't behave much like a promise
- JSON doesn't exist in IE7 without a polyfill
- Since this only supports GET, you could use JSON-P instead if you trust the server
Re: Pegasus.js: Load data while still loading other scripts
#3Some thoughts: - `then` doesn't behave much like a promise - JSON doesn't exist in IE7 without a polyfill - Since this only supports GET, you could use JSON-P instead if you trust the server
Hi, thanks for sharing these thoughts.
You're right about JSON, I'll fix that :)