New at Chrome Apps.  Using cca and CADT for mobile development.
In the following code, why is jQuery not immediately available? Is there some async magic being auto-applied?
I don't have this behavior in a vanilla cordova project.
<script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
<script type="text/javascript">
    setTimeout(function()
    {
        console.log($);    // $ is jQuery
    }, 1000);
    console.log($);        // $ is undefined
</script>