I want to use xui.js in a mobile web project that needs to work on iOS, Android and Windows Phone 7. The documentation (http://xuijs.com/) is a little unclear as what the different versions include. Does the "ie & ie mobile" version also include the "webkit / firefox / opera" version?
If not, what is the recommended way of delivering the library? I was considering using conditional comments to include the different versions if that is necessary. e.g.
<!--[if IE]>
<script src="xui-ie.js"></script>
<!-- <![endif]-->
<!--[if !IE]>
<script src="xui.js"></script>
<!-- <![endif]-->