https://cdn.jsdelivr.net/g/jquery@1.10.2,bootstrap@3.0.3,angularjs@1.2.10
Also, it's not clear if you can or not mix CSS and JS in the query, that would be neat to do that and then to insert CSS with Javascript (or maybe that would be a bad idea).
You can mix CSS and JS in one query but its up to you to make it work.
To load Bootstrap CSS you need to specify the exact file like so
https://cdn.jsdelivr.net/g/bootstrap@3.1(css/bootstrap.min.c...
Because the main file for this project points to a js
Here is my final Javascript query: https://cdn.jsdelivr.net/g/jquery@1.10.2(jquery.min.js),boot...
You need to specify the files if you are loading files other than the one specified in the "mainfile" parameter. Or loading multiple files together.
Also, it's not clear if you can or not mix CSS and JS in the query, that would be neat to do that and then to insert CSS with Javascript (or maybe that would be a bad idea).