I am just beginning to use the requirejs api, but have an initial question concerning using the google CDN.
Currently, to get the latest jquery and jqueryui I am using the following:
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script src="https://www.google.com/jsapi?key=myKey"></script>
<script type="text/javascript">
//=== Load in any web modules necessary
google.load("jquery", "1");
google.load("jqueryui", "1");
</script>
Is it possible to use this structure, or something similar, with requirejs? If so, what would the main.js file look like?
Also, can the requirejs also control the css inclusions?